主要是因為,前一篇用完後我發現,用在右手邊的播放清單的上一個/下一個切換影片時還是以FLV的為主…然後要先進入FLV的版本,然後再點Theora-ogg-version才能繼續看ogg…這樣,好麻煩…因為會浪費「讀flash->選ogg版本->讀ogg」這樣多的時間…
人果然還是要以懶惰為本
所以,我追加進入Theora-ogg-version之後,右手邊的播放清單的上一個/下一個自動就換成ogg的選擇
- 打開ostube-path/mediadetails.php
找到前一篇放的
include("{$root_path}includes/dur_function.php"); $main -> EndScript($smarty -> fetch("content/mediadetails_ogg.tpl"), $media_type . "s");
改成
include("{$root_path}includes/dur_function.php"); $smarty -> assign("G", $_GET['g']); $main -> EndScript($smarty -> fetch("content/mediadetails_ogg.tpl"), $media_type . "s");
- 打開ostube-path/templates/defaults/content/mediadetails_ogg.tpl
找到
{$playlist}
改成
{if $G}
{$playlist|replace:'video':'ogg'}
{/if}
{if !$G}
{$playlist}
{/if}
哦,對了…轉成ogg的唯一好處就是音質變優,不過按理來說,應該是不可能的,可能是html5的video那個播放器有做過特別的處理…
但唯一的壞處就是,ogg會比原來的flv大好多
沒有留言:
張貼留言