From 4308a83ce101918e7904d35e31f4bc29544c1e87 Mon Sep 17 00:00:00 2001 From: Alib Date: Tue, 23 Feb 2010 20:31:04 +0100 Subject: corrected poster aspect ratio for media --- includes/inc_files.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/inc_files.php b/includes/inc_files.php index cc5c1c0..817cac2 100755 --- a/includes/inc_files.php +++ b/includes/inc_files.php @@ -32,11 +32,11 @@ function mediagetinfostream($stream = "") $path = dirname($stream); if (file_exists(substr($stream, 0, -4) .".tbn")) - exec("cp \"" .substr($stream, 0, -4) .".tbn\" ram/stream-tb-tmp.jpg; " .$ffmpegpath ." -y -i ram/stream-tb-tmp.jpg -s 128x72 ram/stream-tb.jpg"); + exec("cp \"" .substr($stream, 0, -4) .".tbn\" ram/stream-tb-tmp.jpg; " .$ffmpegpath ." -y -i ram/stream-tb-tmp.jpg -s 128x180 ram/stream-tb.jpg"); else if (file_exists($path ."/poster.jpg")) - exec($ffmpegpath ." -y -i \"" .$path ."/poster.jpg\" -s 128x72 ram/stream-tb.jpg"); + exec($ffmpegpath ." -y -i \"" .$path ."/poster.jpg\" -s 128x180 ram/stream-tb.jpg"); else if (file_exists($path ."/folder.jpg")) - exec($ffmpegpath ." -y -i \"" .$path ."/folder.jpg\" -s 128x72 ram/stream-tb.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"); -- cgit v1.2.3