Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
== 7.1.1 2025-05-09

Fixes:
* Removed invalid option `-reconnect_on_timeout` from `FFMPEG::CommandArgs::NetworkStreaming`.

== 7.1.0 2025-05-09

Improvements:
Expand Down
3 changes: 1 addition & 2 deletions lib/ffmpeg/command_args/network_streaming.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ module NetworkStreaming
reconnect 1
reconnect_at_eof 1
reconnect_streamed 1
reconnect_delay_max 30
reconnect_on_network_error 1
reconnect_on_http_error '500,502,503,504'
reconnect_on_timeout 1
reconnect_delay_max 30
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/ffmpeg/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module FFMPEG
VERSION = '7.1.0'
VERSION = '7.1.1'
end
3 changes: 1 addition & 2 deletions spec/ffmpeg/command_args/network_streaming_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@ class CommandArgs
-reconnect 1
-reconnect_at_eof 1
-reconnect_streamed 1
-reconnect_delay_max 30
-reconnect_on_network_error 1
-reconnect_on_http_error 500,502,503,504
-reconnect_on_timeout 1
-reconnect_delay_max 30
]
)
)
Expand Down