Sunday, July 24, 2011

FFMPEG solutions--Convert with best queries

A bit of googling and reading the man pages later I discovered-vcodec copy -acodec copyThis tells ffmpeg to copy the video and audio without re-encoding.So insted of thisffmpeg -i input.flv output.mp4The Solutionffmpeg -i input.flv -vcodec copy -acodec copy output.mp4Further complicationsjavascript:void(0)This worked a treat for all except one file - which gave the following error.[NULL @ 0x9b6b9f0]error, non monotone timestamps 37464141 >= 37463126av_interleaved_write_frame():...
Read more

Saturday, July 23, 2011

How to Access Banned Websites

Surfing at school? Parents enabled website blocking? Stuck behind a strict firewall? There are lots of ways around the problem so that you can get to the sites you want to see without those cybernannies tying your hands…phproxy is “dedicated to bringing you fast web browsing from behind web filters”. Simply tap in the URL of that banned site you really must see, it could be Facebook, MySpace, Youtube,...
Read more

FFmpeg commands for all needs --All in one pack

ffmpeg is a multiplatform, open-source library for video and audio files. I have compiled 19 useful and amazing commands covering almost all needs: video conversion, sound extraction, encoding file for iPod or PSP, and more.Getting infos from a video fileffmpeg -i video.aviTurn X images to a video sequenceffmpeg -f image2 -i image%d.jpg video.mpgThis command will transform all the images from the current directory (named image1.jpg, image2.jpg, etc…) to a...
Read more