View previous topic :: View next topic |
Author |
Message |
Ätherischer Wanderer n00b
Joined: 28 Dec 2004 Posts: 59
|
Posted: Sat Nov 28, 2009 11:03 am Post subject: Dvd2mp3 |
|
|
Hallo liebe Gemeinde!
Kennt jemand ein Programm (wenn es geht portage-tree oder irgendeinem overlay), dass mich in einem Schritt eine DVD (z.B. Konzert-DVD) in Audiodateien umwandeln lässt? Am besten wäre es, wenn das Programm für jedes Kapitel eine Datei absplittet.
Vielen Dank im Voraus! |
|
Back to top |
|
|
fangorn Veteran
Joined: 31 Jul 2004 Posts: 1886
|
Posted: Mon Dec 07, 2009 11:48 am Post subject: |
|
|
Mit mencoder sollte das gehen
Code: | #!/bin/bash
# titelnummer ($1) und anzahl Kapitel ($2) als ersten und zweiten Parameter übergeben
# Bestimmen z. B. mit lsdvd
for i in {1..$2} ; do
mencoder dvd://$1 −chapter $i -of rawaudio -oac mp3lame -lameopts abr:br=256 -o audiodvd_${i}.mp3
done
|
Für eine Verbesserung des Scripts und eine automatische Erkennung des längsten Titels sowie der Anzahl der Kapitel siehe zum Beispiel riptoh264 (unter dem Link in meiner Signatur).
Für einen Downmix von 5.1 audio in Stereo wäre noch ein nötig. Ich habe mir das mal zusammengesucht, gebe allerdings keine Garantie auf Richtigkeit.
Code: | AC3 source "-af format=s16le,lavcresample=44100:16:1,pan=2:1:0:0.5:0.5:0:1:1:0:0:1:1:1 -srate 44100"
E-AC3 source dasselbe
DTS source "-af format=s16le,lavcresample=44100:16:1,pan=2:0.5:0.5:1:0:0:1:1:0:0:1:1:1 -srate 44100"
AAC source "-af format=s16le,lavcresample=44100:16:1,pan=2:0.5:0.5:1:0:0:1:1:0:0:1:1:1 -srate 44100"
|
Edit:
Dass wir uns nicht falsch verstehen. Ich bin noch nicht in die Verlegenheit gekommen, eine solche Aufgabe zu erfüllen. Obige Kommandos sind nicht getestet, sollten aber laut Handbuch korrekt sein. Wenn es also nicht funktioniert, einfach ein bisschen mit dem Optionen spielen. _________________ Video Encoding scripts collection | Project page |
|
Back to top |
|
|
l3u Advocate
Joined: 26 Jan 2005 Posts: 2616 Location: Konradsreuth (Germany)
|
Posted: Mon Dec 07, 2009 8:20 pm Post subject: |
|
|
Geht auch mit mplayer -dumpaudio, das Ergebnis kann man dann z. B. mit ffmpeg downmixen. |
|
Back to top |
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|