コード例 #1
0
ファイル: mpeg4.py プロジェクト: gangbanlau/gstmanager-1.0
 def __init__(self, profile):
     self.description = "Identity encoder"
     self.type = "audio"
     sbin = "identity silent=true"
     AudioEncoder.__init__(self, sbin)
コード例 #2
0
ファイル: mpeg4.py プロジェクト: gangbanlau/gstmanager-1.0
 def __init__(self, profile):
     self.description = "Vorbis encoder"
     self.type = "audio"
     sbin = "vorbisenc bitrate=%s" % profile.audio_bitrate
     AudioEncoder.__init__(self, sbin)
コード例 #3
0
ファイル: mpeg4.py プロジェクト: UbiCastTeam/gstmanager-1.0
 def __init__(self, profile):
     self.description = "Identity encoder"
     self.type = "audio"
     sbin = "identity silent=true"
     AudioEncoder.__init__(self, sbin)
コード例 #4
0
ファイル: h264.py プロジェクト: gangbanlau/gstmanager-1.0
 def __init__(self, profile=DefaultEncodingProfile()):
     self.description = "AAC encoder"
     self.type = "audio"
     sbin = "volume name=alivemute ! faac bitrate=%s profile=2" % profile.audio_bitrate
     AudioEncoder.__init__(self, sbin)
コード例 #5
0
ファイル: mpeg4.py プロジェクト: UbiCastTeam/gstmanager-1.0
 def __init__(self, profile):
     self.description = "Vorbis encoder"
     self.type = "audio"
     sbin = "vorbisenc bitrate=%s" % profile.audio_bitrate
     AudioEncoder.__init__(self, sbin)