Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Dvd2mp3
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
Ätherischer Wanderer
n00b
n00b


Joined: 28 Dec 2004
Posts: 59

PostPosted: Sat Nov 28, 2009 11:03 am    Post subject: Dvd2mp3 Reply with quote

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
View user's profile Send private message
fangorn
Veteran
Veteran


Joined: 31 Jul 2004
Posts: 1886

PostPosted: Mon Dec 07, 2009 11:48 am    Post subject: Reply with quote

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
Code:
-af pan=x:...
nötig. Ich habe mir das mal zusammengesucht, gebe allerdings keine Garantie auf Richtigkeit. :wink:

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
View user's profile Send private message
l3u
Advocate
Advocate


Joined: 26 Jan 2005
Posts: 2546
Location: Konradsreuth (Germany)

PostPosted: Mon Dec 07, 2009 8:20 pm    Post subject: Reply with quote

Geht auch mit mplayer -dumpaudio, das Ergebnis kann man dann z. B. mit ffmpeg downmixen.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
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