From: <ara...@us...> - 2007-03-09 21:54:50
|
Revision: 95 http://svn.sourceforge.net/easybox-mod/?rev=95&view=rev Author: aragornis Date: 2007-03-09 13:54:45 -0800 (Fri, 09 Mar 2007) Log Message: ----------- Encore quelques am?\195?\169liorations grace aux nouvelles options de la fbx Modified Paths: -------------- trunk/module/films/films.tpl trunk/module/films/info.php Modified: trunk/module/films/films.tpl =================================================================== --- trunk/module/films/films.tpl 2007-03-09 18:16:03 UTC (rev 94) +++ trunk/module/films/films.tpl 2007-03-09 21:54:45 UTC (rev 95) @@ -29,19 +29,23 @@ {elseif $module=='video'} <font size="3"><u>Options vid\xE9o</u></font><br> <form action="info.php" method="get"> - <input type=hidden name=module value=video><input type=hidden name=var value="video-es"><br> + <select name="video"> + <input type=hidden name=module value=video><input type=hidden name=var value="video-es"><br> {foreach from=$video item=pistev key=key name=video} - <input type=radio name=video bgcolor="{#COULEUR_FOND_RADIO#}" value="{$key}" {if $pistev.1} checked{/if}>{$pistev.0}<br> + <option value={$key} {if $pistev.1}selected{/if}>{$pistev.0} + {*<input type=radio name=video bgcolor="{#COULEUR_FOND_RADIO#}" value="{$key}" {if $pistev.1} checked{/if}>{$pistev.0}<br>*} {/foreach} - <br>Post-traitement + </select> + <br>Post-traitement : <select name="pp"> +<option value=0 {if $pp_video==1}selected{/if}>0 <option value=1 {if $pp_video==1}selected{/if}>1 <option value=2 {if $pp_video==2}selected{/if}>2 <option value=3 {if $pp_video==3}selected{/if}>3 <option value=4 {if $pp_video==4}selected{/if}>4 <option value=5 {if $pp_video==5}selected{/if}>5 <option value=6 {if $pp_video==6}selected{/if}>6 -</select> +</select><br> Augmenter la qualit\xE9 du traitement de l'image (de 0 vers 6) demande plus de puissance CPU. <br> @@ -164,7 +168,7 @@ {section name=foo1 start=1 loop=$stream_3 step=1} {assign var=time value="`$smarty.section.foo1.iteration*$largeursautmoins`"} {assign var=heure value=$time|date_format:"%H"} -<td width="5"><a onfocus='front_panel="{$time|calcul_hours|cleanaff}";temp_affich="{$time|calcul_hours}";' onBlur='front_panel="{$original_front|calcul_hours|cleanaff}";temp_affich="{$temps_affich}";' href="info.php?heures={$heure-1}&minutes={$time|date_format:"%M"}&secondes={$time|date_format:"%S"}"><table border="0" cellpadding="0" cellspacing="0" bgcolor="#BDBDC23f" abgcolor="#0000003f"><tr><td><img src="" width="5" height="5" border="0"></td></tr></table></a></td> +<td width="5"><a onfocus='front_panel="{$time|calcul_hours|cleanaff}";temps_affich="{$time|calcul_hours}";' onBlur='front_panel="{$original_front|calcul_hours|cleanaff}";temps_affich="{$temps_affich}";' href="info.php?heures={$heure-1}&minutes={$time|date_format:"%M"}&secondes={$time|date_format:"%S"}"><table border="0" cellpadding="0" cellspacing="0" bgcolor="#BDBDC23f" abgcolor="#0000003f"><tr><td><img src="" width="5" height="5" border="0"></td></tr></table></a></td> {/section} @@ -173,7 +177,7 @@ {section name=foo2 start=1 loop=$stream_5 step=1} {assign var=time value="`$VLC.duree_courante+$smarty.section.foo2.iteration*$largeursautplus`"} {assign var=heure value=$time|date_format:"%H"} -<td width="5"><a onfocus='front_panel="{$time|calcul_hours|cleanaff}";' href="info.php?heures={$heure-1}&minutes={$time|date_format:"%M"}&secondes={$time|date_format:"%S"}"><table border="0" cellpadding="0" cellspacing="0" bgcolor="#BDBDC23f" abgcolor="#0000003f"><tr><td><img src="" width="5" height="5" border="0"></td></tr></table></a></td> +<td width="5"><a onfocus='front_panel="{$time|calcul_hours|cleanaff}";temps_affich="{$time|calcul_hours}";' onBlur='front_panel="{$original_front|calcul_hours|cleanaff}";temps_affich="{$temps_affich}";' href="info.php?heures={$heure-1}&minutes={$time|date_format:"%M"}&secondes={$time|date_format:"%S"}"><table border="0" cellpadding="0" cellspacing="0" bgcolor="#BDBDC23f" abgcolor="#0000003f"><tr><td><img src="" width="5" height="5" border="0"></td></tr></table></a></td> {/section} <td width="13"></td> Modified: trunk/module/films/info.php =================================================================== --- trunk/module/films/info.php 2007-03-09 18:16:03 UTC (rev 94) +++ trunk/module/films/info.php 2007-03-09 21:54:45 UTC (rev 95) @@ -111,6 +111,8 @@ foreach($pp_video as $key => $value){ $_pp_video = $key; } + $META['pp']=$_pp_video; + $META['pp']=$video; $smarty->assign('video',$video); $smarty->assign('pp_video',$_pp_video); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |