Playing hi-res flv files

What is the best way to play hi-res flv clips ? Frame size is 1650×1050 pixels and it runs for about 2-3 seconds. I am downloading the file before playing, but it drops frames and not running smoothly. Is this an encoding issue ? Answer Flash video is very processor-intensive to decode, so it’s most … Read more

Problem with xvideoservice thief

Xvideo service thief is an application that allows you to download and convert youtube videos into .avi format. The problem is when it tries to convert the .flv into a .avi. The audio in the video is not being played when you try to play the video. But the .flv works fine. I have also … Read more

Which command should I use to make .jpeg from .flv using ffmpeg?

The below command creates jpeg out of .mpg, but fails to create jpeg out of .flv. How can I do that? $ffmpegpath = FFMPEG_PATH; $input = “video_file/orig/fdgdf.mpg”;//Lady.flv”; $output = “video_file/thumb/kuni.jpeg”; $command = “$ffmpegpath -i $input -an -ss 00:00:$fromdurasec -r 1 -vframes 1 -s 80×80 -f mjpeg -y $output”; Answer ffmpeg -i video.flv -an -ss 00:00:03 … Read more

Which command should I use to make .jpeg from .flv using ffmpeg?

The below command creates jpeg out of .mpg, but fails to create jpeg out of .flv. How can I do that? $ffmpegpath = FFMPEG_PATH; $input = “video_file/orig/fdgdf.mpg”;//Lady.flv”; $output = “video_file/thumb/kuni.jpeg”; $command = “$ffmpegpath -i $input -an -ss 00:00:$fromdurasec -r 1 -vframes 1 -s 80×80 -f mjpeg -y $output”; Answer ffmpeg -i video.flv -an -ss 00:00:03 … Read more