Also ich hab es jetzt geschaft ffmpeg nach hunderten zusätzlichen Paketen unter suse 9.3 i586 zu installieren...
Jetzt passiert aber leider nix wenn ich volgendes mache... das Bild bleibt einfach nur weiß... und die datei "film.mov" wird auch nicht erzeugt.
wenn ich es aus der konsole mache schreibt er mir folgendes... ABER er hat die "film.mov" erzeugt, das Problem hier: 0KB also leer...
Kann mir jemand weiterhelfen wie ich über PHP ffmpeg so anspreche das es mir aus einer wmv ein flv oder swf macht?!
Jetzt passiert aber leider nix wenn ich volgendes mache... das Bild bleibt einfach nur weiß... und die datei "film.mov" wird auch nicht erzeugt.
PHP-Code:
exec("/ffmpeg/ffmpeg -i /var/www/vhosts/httpdocs/test_media/robot.avi -f mov -vcodec mpeg4 -s 160x120 -r 12 /var/www/vhosts/httpdocs/film.mov" , $meldung);
foreach($meldung as $value) {
echo "$value<br>\n";
}
?>
v25937:/ # /ffmpeg/ffmpeg -i /var/www/vhosts/httpdocs/test_media/robot.avi -f mov -vcodec mpeg4 -s 160x120 -r 12 /var/www/vhosts/httpdocs/film.mov
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2006 Fabrice Bellard, et al.
configuration: --enable-shared --prefix=/usr
libavutil version: 49.1.0
libavcodec version: 51.28.0
libavformat version: 51.7.0
built on Jan 29 2007 08:54:47, gcc: 3.3.5 20050117 (prerelease) (SUSE Linux)
Compiler did not align stack variables. Libavcodec has been miscompiled
and may be very slow or crash. This is not a bug in libavcodec,
but in the compiler. Do not report crashes to FFmpeg developers.
Input #0, mpeg, from '/var/www/vhosts/httpdocs/test_media/robot.avi':
Duration: 00:00:00.3, start: 0.177778, bitrate: 4905 kb/s
Stream #0.0[0x1c0]: Audio: mp2, 32000 Hz, mono, 32 kb/s
Stream #0.1[0x1e0]: Video: mpeg1video, yuv420p, 160x112, 104857 kb/s, 25.00 fps(r)
Output #0, mov, to '/var/www/vhosts/httpdocs/ilm.mov':
Stream #0.0: Video: mpeg4, yuv420p, 160x120, q=2-31, 200 kb/s, 12.00 fps(c)
Stream #0.1: Audio: 0x0000, 32000 Hz, mono, 64 kb/s
Stream mapping:
Stream #0.1 -> #0.0
Stream #0.0 -> #0.1
Unsupported codec for output stream #0.1
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2006 Fabrice Bellard, et al.
configuration: --enable-shared --prefix=/usr
libavutil version: 49.1.0
libavcodec version: 51.28.0
libavformat version: 51.7.0
built on Jan 29 2007 08:54:47, gcc: 3.3.5 20050117 (prerelease) (SUSE Linux)
Compiler did not align stack variables. Libavcodec has been miscompiled
and may be very slow or crash. This is not a bug in libavcodec,
but in the compiler. Do not report crashes to FFmpeg developers.
Input #0, mpeg, from '/var/www/vhosts/httpdocs/test_media/robot.avi':
Duration: 00:00:00.3, start: 0.177778, bitrate: 4905 kb/s
Stream #0.0[0x1c0]: Audio: mp2, 32000 Hz, mono, 32 kb/s
Stream #0.1[0x1e0]: Video: mpeg1video, yuv420p, 160x112, 104857 kb/s, 25.00 fps(r)
Output #0, mov, to '/var/www/vhosts/httpdocs/ilm.mov':
Stream #0.0: Video: mpeg4, yuv420p, 160x120, q=2-31, 200 kb/s, 12.00 fps(c)
Stream #0.1: Audio: 0x0000, 32000 Hz, mono, 64 kb/s
Stream mapping:
Stream #0.1 -> #0.0
Stream #0.0 -> #0.1
Unsupported codec for output stream #0.1
Kommentar