This shows you the differences between the selected revision and the current version of the page.
| luc:opensource_multimedia_workstation | luc:opensource_multimedia_workstation 2010/07/19 14:58 current | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ======Open source Multimedia Workstation====== | ||
| + | |||
| + | |||
| + | ====Build your system==== | ||
| + | * install ubuntu 10.04 (both 32 and 64 bit are OK) | ||
| + | * install extra packages: | ||
| + | |||
| + | For you firewire video camera: | ||
| + | apt-get install dvgrab | ||
| + | |||
| + | |||
| + | AV-libraries: | ||
| + | See also: [[http://ubuntuforums.org/showthread.php?t=1117283]] | ||
| + | * option A: | ||
| + | apt-get install libavcodec-extra-52 libavformat-extra-52 libavdevice-extra-52 | ||
| + | |||
| + | * option B: | ||
| + | Use the Medibuntu-repository: | ||
| + | |||
| + | wget http://www.medibuntu.org/sources.list.d/`lsb_release -cs`.list \ | ||
| + | --output-document=/etc/apt/sources.list.d/medibuntu.list | ||
| + | apt-get -q update | ||
| + | apt-get --yes -q --allow-unauthenticated install medibuntu-keyring | ||
| + | apt-get -q update | ||
| + | apt-get install ffmpeg libavcodec-extra-52 | ||
| + | apt-get install ffmpeg | ||
| + | |||
| + | |||
| + | |||
| + | Commandline video editing tools: | ||
| + | apt-get install ffmpeg ffmpeg2theora | ||
| + | |||
| + | GUI Video Editing software: | ||
| + | apt-get install kdenlive | ||
| + | |||
| + | ====Use your system==== | ||
| + | |||
| + | ===Convert raw-tapes to editable material=== | ||
| + | |||
| + | * make all material mpeg2 | ||
| + | ffmpeg -i file.m2t -vcodec mpeg2video -acodec copy -sameq -o file.m2t.mpeg | ||
| + | |||
| + | |||
| + | |||
| + | |||