Skip to content

Commit

Permalink
Fix unexpected stop of media playback via ffmpeg proxy for ESPhome de…
Browse files Browse the repository at this point in the history
…vices (home-assistant#130788)

disable writing progress stats to stderr in ffmpeg command
  • Loading branch information
mib1185 authored and dotvav committed Nov 17, 2024
1 parent 3ff3468 commit 67fbc58
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions homeassistant/components/esphome/ffmpeg_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,9 @@ async def transcode(
# 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:")

Expand Down

0 comments on commit 67fbc58

Please sign in to comment.