diff options
author | Alib <aliboba@free.fr> | 2010-02-23 21:04:08 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-02-23 21:04:08 +0100 |
commit | 88503d0f3a5e3724606754ecd8d4d109973e0d47 (patch) | |
tree | efd734a5fbddacb63979fe09806ba250913bf3d4 | |
parent | f2a791d89dfb186465f4c6b192f4005035931dab (diff) | |
download | istreamdev-88503d0f3a5e3724606754ecd8d4d109973e0d47.tar.gz istreamdev-88503d0f3a5e3724606754ecd8d4d109973e0d47.tar.bz2 |
cosmetics
-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); } |