Hi,
I eventually got to the point where I really enjoy my Freevo set up
and I am ready to give a helping hand.
First patch is attached (i am not too familiar with the best way to
edit patches so let me know how to best do). When recording my first
video from DVD, I realized (too late) that my choice of language was
not respected. The patch attached fixes this.
I have also seen that the CDDB support was lacking as far as unicode
is concerned.
I inserted a Japanese CD (Mai Kuraki) and all I got was question
marks... So I will try to see if I can plug'n play a better CDDB
library.
Regards,
Guillaume
--- freevo-1.7.0-rc2/src/encodingcore.py 2006-12-27 23:02:48.000000000 +0900
+++ /usr/lib/python2.4/site-packages/freevo/encodingcore.py 2007-01-08 17:00:16.000000000 +0900
@@ -316,7 +316,11 @@
"""Returns source part of mencoder"""
if self.sourcetype == "dvd":
#return [ "-endpos", "10","-dvd-device", self.source , "dvd://%s" % self.chapter]
- return [ "-dvd-device", self.source , "dvd://%s" % self.chapter]
+ if hasattr(config,"DVD_LANG_PREF") and config.DVD_LANG_PREF is not None:
+ audio=["-alang", config.DVD_LANG_PREF]
+ else:
+ audio = []
+ return audio+[ "-dvd-device", self.source , "dvd://%s" % self.chapter]
else:
return [ self.source ]
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel