Difference between revisions of "21C3/Videos"
< 21C3
(→Gentoo Setup) |
|||
Line 35: | Line 35: | ||
you may also need: | you may also need: | ||
emerge media-libs/faac | emerge media-libs/faac | ||
− | + | * Extend codecs.conf and insert "format 0x706D" into section "audiocodec faad": | |
− | |||
vi /usr/share/mplayer/codecs.conf | vi /usr/share/mplayer/codecs.conf | ||
− | |||
− | |||
* Execute: | * Execute: | ||
− | |||
− | |||
mplayer 21c3_Video.avi | mplayer 21c3_Video.avi | ||
* Have Fun! | * Have Fun! | ||
Line 48: | Line 43: | ||
==Darwin Setup== | ==Darwin Setup== | ||
Tested on Darwin 7.9.0 | Tested on Darwin 7.9.0 | ||
− | * Install mplayer | + | * Install mplayer if not already installed: |
− | * Copy this [http://www.aculei.net/~mangala/codecs.conf codecs.conf] to a local directory | + | port install mplayer |
− | * | + | * Copy this [http://www.aculei.net/~mangala/codecs.conf codecs.conf] to a local directory |
− | * Have Fun | + | * Execute: |
− | + | mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi | |
− | * | + | * Have Fun! |
+ | * Also have a look at http://machackers.annulator.de/archives/2005/05/21c3videos_anse.html | ||
− | == | + | ==MacOSX Setup== |
− | http:// | + | Tested on MacOSX 10.4 |
+ | * Install mplayerosx (http://prdownloads.sourceforge.net/mplayerosx/MplayerOSXB8r4.zip?download)/mplayer (http://prdownloads.sourceforge.net/mplayerosx/ffmpegXbinaries230105_G3.zip) | ||
+ | * Copy this [http://www.aculei.net/~mangala/codecs.conf codecs.conf] to ~/.mplayer | ||
+ | * Have Fun! | ||
==FreeBSD Setup== | ==FreeBSD Setup== | ||
Tested on FreeBSD 5.4-STABLE | Tested on FreeBSD 5.4-STABLE | ||
− | * Install mplayer | + | * Install mplayer if not already installed: |
− | * Copy this [http://www.aculei.net/~mangala/codecs.conf codecs.conf] to a local directory | + | cd /usr/ports/multimedia/mplayer && make install clean |
− | * | + | * Copy this [http://www.aculei.net/~mangala/codecs.conf codecs.conf] to a local directory |
− | * Have Fun | + | * Execute: |
+ | mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi | ||
+ | * Have Fun! | ||
==NetBSD Setup== | ==NetBSD Setup== | ||
Tested on NetBSD 2.0.2_STABLE | Tested on NetBSD 2.0.2_STABLE | ||
− | * Install mplayer | + | * Install mplayer if not already installed: |
− | * Copy this [http://www.aculei.net/~mangala/codecs.conf codecs.conf] to a local directory | + | cd /usr/pkgsrc/multimedia/mplayer && make install clean |
− | * | + | * Copy this [http://www.aculei.net/~mangala/codecs.conf codecs.conf] to a local directory |
− | * Have Fun | + | * Execute: |
+ | mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi | ||
+ | * Have Fun! | ||
==Fedora Setup== | ==Fedora Setup== | ||
Tested on Fedora Core 2 | Tested on Fedora Core 2 | ||
− | * Install mplayer | + | * Install mplayer from http://rpm.greysector.net/mplayer/ |
− | * Copy this [http://antwort.42h.de/uploads/codecs.conf codecs.conf] to a local directory | + | * Copy this [http://antwort.42h.de/uploads/codecs.conf codecs.conf] to a local directory |
− | * | + | * Execute: |
− | * Have Fun | + | mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi |
+ | * Have Fun! | ||
==Windows Setup== | ==Windows Setup== |
Revision as of 21:03, 18 May 2005
Contents
Video Files
http://w8n.koeln.ccc.de/media/video/21c3/
Torrents
http://berlin.ccc.de/~thalunil/21c3_lectures_video/
Ubuntu Setup
- Install Marillat mplayer (http://debian.video.free.fr)
- Add Repository to your /etc/apt/sources.list or via Synaptic (Settings-Repositories-Add-Custom)
- (ftp://ftp.nerim.net/debian-marillat/ unstable main)
- Update Package Lists, install mplayer-<arch>
- Extend codecs.conf
- $ gunzip -c /usr/share/doc/mplayer-k6/examples/codecs.conf.gz | sudo tee /etc/mplayer/codecs.conf
- $ edit /etc/mplayer/codecs.conf, in Section "audiocodec faad", add: "format 0x706D"
- Have Fun
Debian Sarge Setup
- Install Marillat mplayer (http://debian.video.free.fr)
- Add Repository to your /etc/apt/sources.list
- (ftp://ftp.nerim.net/debian-marillat/ unstable main)
- Update Package Lists, install mplayer-<arch>
- (if you encounter depency problems, you probably need to install a more current version of libgcc1)
- Extend codecs.conf
- $ gunzip -c /usr/share/doc/mplayer-586/examples/codecs.conf.gz > /etc/mplayer/codecs.conf
- $ edit /etc/mplayer/codecs.conf, in Section "audiocodec faad", add: "format 0x706D"
- Anyone solved the problem?
Trying to force audio codec driver family libmad... Opening audio decoder: [faad] AAC (MPEG2/4 Advanced Audio Coding) MPlayer interrupted by signal 11 in module: init_audio_codec
- Have Fun
Gentoo Setup
- Install mplayer with the given USE flag if not already installed:
USE="mad" emerge media-video/mplayer
- Install the necessary codecs if not already installed:
emerge media-libs/faad2
you may also need:
emerge media-libs/faac
- Extend codecs.conf and insert "format 0x706D" into section "audiocodec faad":
vi /usr/share/mplayer/codecs.conf
- Execute:
mplayer 21c3_Video.avi
- Have Fun!
Darwin Setup
Tested on Darwin 7.9.0
- Install mplayer if not already installed:
port install mplayer
- Copy this codecs.conf to a local directory
- Execute:
mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi
- Have Fun!
- Also have a look at http://machackers.annulator.de/archives/2005/05/21c3videos_anse.html
MacOSX Setup
Tested on MacOSX 10.4
- Install mplayerosx (http://prdownloads.sourceforge.net/mplayerosx/MplayerOSXB8r4.zip?download)/mplayer (http://prdownloads.sourceforge.net/mplayerosx/ffmpegXbinaries230105_G3.zip)
- Copy this codecs.conf to ~/.mplayer
- Have Fun!
FreeBSD Setup
Tested on FreeBSD 5.4-STABLE
- Install mplayer if not already installed:
cd /usr/ports/multimedia/mplayer && make install clean
- Copy this codecs.conf to a local directory
- Execute:
mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi
- Have Fun!
NetBSD Setup
Tested on NetBSD 2.0.2_STABLE
- Install mplayer if not already installed:
cd /usr/pkgsrc/multimedia/mplayer && make install clean
- Copy this codecs.conf to a local directory
- Execute:
mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi
- Have Fun!
Fedora Setup
Tested on Fedora Core 2
- Install mplayer from http://rpm.greysector.net/mplayer/
- Copy this codecs.conf to a local directory
- Execute:
mplayer -codecs-file /tmp/codecs.conf 21c3_Video.avi
- Have Fun!
Windows Setup
- Install mplayer from http://mplayerhq.hu (MPlayer-mingw32-dev-CVS-050514.zip)
- Edit mplayer\mplayer\codecs.conf and add the entries from here: https://21c3.ccc.de/wiki/index.php/Codecs.conf
- Execute from the cmd prompt:
mplayer 21c3_Video.avi
- Have Fun!
- More verbose Howto