コード例 #1
0
ファイル: h264.py プロジェクト: lucasa/landell_gst-gengui
 def __init__(self, profile=DefaultEncodingProfile()):
     self.description = "AAC encoder"
     self.type = "audio"
     sbin = "faac bitrate=%s" %profile.audio_bitrate
     AudioEncoder.__init__(self, sbin)
コード例 #2
0
ファイル: ogg.py プロジェクト: lucasa/landell_gst-gengui
 def __init__(self, profile):
     self.description = "Vorbis encoder"
     self.type = "audio"
     sbin = "vorbisenc bitrate=%s" %profile.audio_bitrate
     AudioEncoder.__init__(self, sbin)