Skip to content

Commit

Permalink
Closes #258 (Removed extra %v character)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Boivin committed Sep 30, 2021
1 parent f31927f commit b70c0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vidgear/gears/streamgear.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ def __generate_hls_stream(self, input_params, output_params):

# Finally, some hardcoded HLS parameters (Refer FFmpeg docs for more info.)
output_params["-allowed_extensions"] = "ALL"
output_params["-hls_segment_filename"] = "{}-stream%v-%03d.{}".format(
output_params["-hls_segment_filename"] = "{}-stream-%03d.{}".format(
os.path.join(os.path.dirname(self.__out_file), "chunk"),
"m4s" if output_params["-hls_segment_type"] == "fmp4" else "ts",
)
Expand Down

0 comments on commit b70c0eb

Please sign in to comment.