Skip to content

Commit

Permalink
fix stupid typo that prevents playback
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Oct 20, 2024
1 parent 8be4b8b commit f63d8f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions music_assistant/server/helpers/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,13 +219,13 @@ def get_ffmpeg_args(
# append reconnect options for direct stream from http
input_args += [
# Reconnect automatically when disconnected before EOF is hit.
"reconnect",
"-reconnect",
"1",
# Set the maximum delay in seconds after which to give up reconnecting.
"-reconnect_delay_max",
"30",
# If set then even streamed/non seekable streams will be reconnected on errors.
"reconnect_streamed",
"-reconnect_streamed",
"1",
]
if major_version > 4:
Expand Down

0 comments on commit f63d8f7

Please sign in to comment.