Changeset 1887
- Timestamp:
- 16/11/08 18:55:40 (8 weeks ago)
- svm:headrev:
cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11169- Files:
-
- 1 modified
-
freevo/src/video/plugins/bilingual.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
freevo/src/video/plugins/bilingual.py
r1111 r1887 1 1 # -*- coding: iso-8859-1 -*- 2 2 # ----------------------------------------------------------------------- 3 # bilingual.py -A plugin to add options to play bilingual recordings.3 # A plugin to add options to play bilingual recordings. 4 4 # ----------------------------------------------------------------------- 5 5 # $Id$ … … 30 30 31 31 32 import os 32 33 from os.path import join, split 34 35 import config 33 36 import plugin 34 37 import menu 35 import os36 import config37 from video.encodingclient import *38 38 from gui.AlertBox import AlertBox 39 39 from gui.PopupBox import PopupBox … … 55 55 56 56 def config(self): 57 '''config is called automatically, 57 """ 58 config is called automatically, 58 59 freevo plugins -i video.bilingual returns the info 59 '''60 """ 60 61 _debug_('config(self)', 2) 61 62 return [ … … 64 65 65 66 def actions(self, item): 66 '''Determines if an action applies to the menu 67 """ 68 Determines if an action applies to the menu 67 69 68 70 Normally, the only way to record bilingual audio is with a recent … … 70 72 left, right or both channels and this information is passed to the player 71 73 as part of the item, i.e. item.language_selection. 72 '''74 """ 73 75 _debug_('actions(self, item)', 2) 74 76 if item.type == 'video' and item.mode == 'file':
