timlover |
03-11-2014 06:26 PM |
Quote:
Originally Posted by Tim
(Post 20011855)
Thank you timlover, I appreciate it - this seems to be what I need. Is there anywhere you know where this is explained in more detail?
I'm having trouble knowing exactly what to add in the custom fields & what to code to add to player.
|
It's not really anything that is explained in detail because its simply a customized method of displaying the material and changing the layout of the database.
You need to go through the documentation and learn the software. I know that doesn't sound like a simple solution, but there really isn't a simple solution. It's either that or you pay somebody to set it up for you. Even then, you should still understand whats being done.
Then you need to know how to code the different players like flowplayers, jw, etc in the player templates, combined with the internal tubex commands for php and literals..
Code:
playlist: [
// this first PNG clip works as a splash image
{
{nocache}
{if (($g_logged_in == 0) AND ($video.duration >= 9999999999999999999999))}
url: '{if $video.splashimage}{$video.splashimage}{else}http://www.hugefreeboobs.com/images/duration-splash.jpg{/if}',
{else}
url: '{if $video.splashimage}{$video.splashimage}{else}http://www.hugefreeboobs.com/images/splash.jpg{/if}',
{/if}
{/nocache}
scaling: 'fit'
},
and just to make clear. You're not going to be able to take that code and pop it in your player code and whalla its going to work because thats specifically coded for my site and what my variables do..etc...its just an example of the code merging.
|