nerdculture.org - Nerd Culture | Cutting through the hype.

Description: Cutting through the hype - Casual news and reviews of everything nerdy; including anime, video games, movies and music!

technology (17143) mp3 (4205) aac (284) centos (235) red hat (83) xvid (40) ffmpeg (34) rhel (33) x264 (17) ffmpeg-php (1)

Example domain paragraphs

First of all, I’m going to assume you already have httpd and php installed. If you don’t have them already you should install them now. I recommend Jason Litka’s Yum Repository .

This guide is written with bash comments, so the whole text block below can be copied and pasted into an install.sh file if you’d rather not go through step by step. I wouldn’t recommend it though, as something could always go wrong, and it could be challenging hunting down the problem in that massive wall of output lines!

#!/bin/bash # Mplayer Codecs # Switch to working directory cd /usr/local/src # Download the codec files needed wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-amd64-20071007.tar.bz2 # Extract the codec files bunzip2 essential-amd64-20071007.tar.bz2; tar xvf essential-amd64-20071007.tar # Create a directory for the codecs & import them mkdir /usr/local/lib/codecs/ mv essential-amd64-20071007/* /usr/local/lib/codecs/ chmod -R 755 /usr/local/lib/codecs # FLVTool2 # Switch to working directory c