mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 01:08:12 +00:00
Fix unexpected stop of media playback via ffmpeg proxy for ESPhome devices (#130788)
disable writing progress stats to stderr in ffmpeg command
This commit is contained in:
parent
876112ff54
commit
a588ced2e3
@ -179,6 +179,9 @@ class FFmpegConvertResponse(web.StreamResponse):
|
||||
# Remove metadata and cover art
|
||||
command_args.extend(["-map_metadata", "-1", "-vn"])
|
||||
|
||||
# disable progress stats on stderr
|
||||
command_args.append("-nostats")
|
||||
|
||||
# Output to stdout
|
||||
command_args.append("pipe:")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user