diff options
-rwxr-xr-x | HISTORY | 6 | ||||
-rwxr-xr-x | includes/inc_files.php | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -4,14 +4,14 @@ iStreamdev History in progress: - fixed indentation -- nice display of recording date & time and names +- good display of recording date & time and names - epg characters encoding detection and conversion to utf8 if necessary - fixed channels with coma. Something was still missing. - added an option to enable/disable the VDR feature - segmenter binary path is now configurable ( don't forget to update your config.php ) - cosmetics fixes -- prepared interface for timers & epg -- support for timers creation and deletion +- added timers support: create/edit/delete. +- now support moviename.tbn, poster.jpg & folder.jpg thumbnails for movies 19.02.2010 - V.0.3.6.1 diff --git a/includes/inc_files.php b/includes/inc_files.php index 817cac2..f593ba9 100755 --- a/includes/inc_files.php +++ b/includes/inc_files.php @@ -38,7 +38,7 @@ function mediagetinfostream($stream = "") else if (file_exists($path ."/folder.jpg")) exec($ffmpegpath ." -y -i \"" .$path ."/folder.jpg\" -s 128x180 ram/stream-tb.jpg"); else - exec($ffmpegpath ." -y -i \"" .$stream ."\" -an -ss 00:00:05.00 -r 1 -vframes 1 -s 128x72 -f mjpeg ram/stream-tb.png"); + exec($ffmpegpath ." -y -i \"" .$stream ."\" -an -ss 00:00:05.00 -r 1 -vframes 1 -s 180x100 -f mjpeg ram/stream-tb.png"); return array($title, $info); } |