ffmpeg -f concat -i video.txt -c copy ausgabevideo.mp4
in video.txt stehen die einzelnen Videos mit jeweils file ‚datei.mp4‘, pro Zeile ein Video
ffmpeg -f concat -i video.txt -c copy ausgabevideo.mp4
in video.txt stehen die einzelnen Videos mit jeweils file ‚datei.mp4‘, pro Zeile ein Video
http://tredoryswebsite.de/zeitrafferaufnahmen-mit-dem-raspberrypi/
avconv -r 2 -i 131109_%02d.jpg -r 2 -vcodec flv -g 15 -qscale 1 131109.flv
Videos / DVD umwandeln (VOB to mp4) im Terminal:
von VOB zu mp4
avconv -i Feuerkelch-006.vob -map 0:0 -map 0:1 -map 0:2 -strict experimental test5.mp4
sudo apt-get install handbrake
ppa:stebbins/handbrake-releases
apt-get install handbrake-gtk
sudo apt-get install vobcopy
Kopieren von VOB-Dateien von DVD – auch verschlüsselten
funktioniert hat bei Titanic die einfache Eingabe von vobcopy im Terminal.
Mit „vobcopy“ wird die DVD (auch CSS-verschlüsselte, wenn die libdvdcss2 installiert ist) auf der Kommandozeile verlustfrei als VOB-Datei (DVD-Datei-Format) kopiert und unter Verwendung des Parameters „-l“ als eine einzige Datei auf der Platte abgelegt.
Titel „4“ von der DVD „Dick & Doof“ (von der Gerätedatei):
# vobcopy -l -t Dick_und_Doof_ -n 4
Titel „4“ von der DVD „Dick & Doof“ (vom Mount-Point „/dvd“):# vobcopy -l -t Dick_und_Doof_ -i /dvd -n 4
Die ganze DVD:# vobcopy -l -t Schneewittchen
eine komplette Kopie von der DVD auf Platte ablegen:
# mount /cdrom
# vobcopy -m -i /cdrom
# umount /cdromeine unverschlüsselte DVD kann man so am schnellsten in eine Datei schreiben:
# mount /dvd
# cat /dvd/VIDEO_TS/VTS_*.VOB > titel.mpg
# umount /dvd
sudo apt-get install mkvtoolnix mkvtoolnix-gui