Index: trunk/install/php/showplaylist.php =================================================================== --- trunk/install/php/showplaylist.php (リビジョン 70) +++ trunk/install/php/showplaylist.php (リビジョン 83) @@ -14,5 +14,5 @@  省略時、録画順にソートされる。  titleのときに、番組順ソートされる。 - rawのときに、DBに記録されている番組録画情報ではなくディレクトリにあるm2pファイルを全て表示する。 + rawのときに、DBに記録されている番組録画情報ではなくディレクトリにあるm2p/m2tファイルを全て表示する。 DCC-JPL Japan/foltia project @@ -97,5 +97,5 @@ //旧仕様 if($list == "raw"){ -exec ("ls -t $recfolderpath/*.m2p", $m2pfiles); +exec ("ls -t $recfolderpath/*.m2?", $m2pfiles); @@ -106,5 +106,5 @@ if(($fName == ".") or ($fName == "..") ){ continue; } - if (ereg(".m2p", $fName)){ + if (ereg(".m2.+", $fName)){ $filesplit = split("-",$fName); @@ -230,5 +230,5 @@ } if (file_exists("./selectcaptureimage.php") ) { - $capimgpath = preg_replace("/.m2p/", "", $fName); + $capimgpath = preg_replace("/.m2.+/", "", $fName); print " キャプ\n"; }