mirror of
https://github.com/albfan/miraclecast.git
synced 2025-03-09 23:38:56 +00:00
set audio=False by default
since gstplayer has argument --audio to enable audio support but no way to disable it, audio=False might a better choise. If we left audio=True and incoming stream has video only, the whole pipeline will be blocked and wait for audio stream.
This commit is contained in:
parent
2a3796cfe9
commit
9cd56f3eff
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ if __name__ == '__main__':
|
|||
# " default VESA %08X\n"
|
||||
# " default HH %08X\n"
|
||||
parser.add_argument("-r", "--resolution", help="Resolution")
|
||||
parser.set_defaults(audio=True)
|
||||
parser.set_defaults(audio=False)
|
||||
args = parser.parse_args()
|
||||
|
||||
p = Player(**vars(args))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue