Resources for 'Advanced Video Coding on Linux'

“x264—a free h264/avc encoder”: developers.videolan.org/x264.html

“Codec shoot-out 2005—Final”: www.doom9.org/index.html?/codecs-final-105-1.htm

Apple QuickTime: www.apple.com/quicktime

“MPlayer 1.0pre8 released”: www.mplayerhq.hu

AudioCoding.com: www.audiocoding.com

GPAC: Content Authoring with MP4Box: gpac.sourceforge.net/auth_mp4box.php

Movie Trailers: www.apple.com/trailers

“Including QuickTime in a Web Page”: www.apple.com/quicktime/tutorials/embed.html

MPlayer Plugin: Embedded Video Player for Mozilla: mplayerplug-in.sourceforge.net

______________________

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Speed-up

Branko Majic's picture

By the way, you can speed-up the audio dumping with this command:
mplayer -vc null -vo null -ao pcm:fast max.dv

Great stuff

Branko Majic's picture

This was some great stuff. I already wanted to use h.264, but I was too lazy to find some documentation on it. I just copied over your code and made a few modifications (I created a nice little bash script). One question, though: can you put any resources as where the documentation for the x264 can be found? Something which explains the possible arguments in a little more detail?

x264 article question

alexandre parenteau's picture

Thanks Dave for this nice article.

I almost immediately tried to apply it to my mythtv box transcoding.

However I run into the problem that QuickTime 7 refuses to open the produced mp4 file, even though mplayer does. All I added was --sar 4:3. I also changed the FPS to 29.97 (MythTV NTSC).

I was curious if someone was successful at getting QuickTime 7 to read the H264 file.

Here is the script I made (python) out of the article:

def transcode_file(src, dst):
os.system('mkfifo test.fifo')
os.system('mplayer -ao pcm:file=test.fifo -vc null -vo null "%s" &' % src)
time.sleep(2)
res = os.system('faac test.fifo -o test.aac')

# video to x264
os.putenv("LD_LIBRARY_PATH", "/usr/local/lib")
res = os.system('mencoder -vf format=i420 -ovc raw -of rawvideo -ofps 29.97 -oac copy -o test.fifo "%s" &' % src)
time.sleep(2)
res = os.system('/usr/local/bin/x264 -o test.mp4 --fps 29.97 --bframes 2 --progress --crf 26 --subme 6 --analyse p8x8,b8x8,i4x4,p4x4 --no-psnr test.fifo --sar 4:3 480x480')

res = os.system('/usr/local/bin/MP4Box -add test.mp4 -add test.aac -fps 29.97 "%s"' % dst)
os.system('rm -rf test.fifo test.aac test.mp4')

On Fedora Core 5 (i386)
x264 and gpac from SVN

Anyway, I was blown away by the quality compared to DivX.

Regards,
alex

Webcast
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers

Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.

Learn More

Sponsored by AMD

White Paper
Red Hat White Paper: Using an Open Source Framework to Catch the Bad Guy

Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6

Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.

Learn more about catching the bad guy in this free white paper.

Learn More

Sponsored by DLT Solutions