File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ Nightfall is a library used internally by [Dim](https://github.com/vgarleanu/dim
8
8
3 . Subtitle streaming
9
9
10
10
# Dependencies
11
- ` ffmpeg ` > 4.1
11
+ ` ffmpeg ` >= 6.0
Original file line number Diff line number Diff line change @@ -84,12 +84,12 @@ impl TranscodingProfile for AacTranscodeProfile {
84
84
// timestamp.
85
85
if ctx. output_ctx . start_num > 0 {
86
86
args. append ( & mut vec ! [
87
- "-hls_ts_options " . into( ) ,
87
+ "-hls_segment_options " . into( ) ,
88
88
"movflags=frag_custom+dash+delay_moov+frag_discont" . into( ) ,
89
89
] ) ;
90
90
} else {
91
91
args. append ( & mut vec ! [
92
- "-hls_ts_options " . into( ) ,
92
+ "-hls_segment_options " . into( ) ,
93
93
"movflags=frag_custom+dash+delay_moov" . into( ) ,
94
94
] ) ;
95
95
}
Original file line number Diff line number Diff line change @@ -332,12 +332,12 @@ pub(super) fn get_discont_flags(ctx: &ProfileContext) -> Vec<String> {
332
332
// timestamp.
333
333
if ctx. output_ctx . start_num > 0 {
334
334
vec ! [
335
- "-hls_ts_options " . into( ) ,
335
+ "-hls_segment_options " . into( ) ,
336
336
"movflags=frag_custom+dash+delay_moov+frag_discont" . into( ) ,
337
337
]
338
338
} else {
339
339
vec ! [
340
- "-hls_ts_options " . into( ) ,
340
+ "-hls_segment_options " . into( ) ,
341
341
"movflags=frag_custom+dash+delay_moov" . into( ) ,
342
342
]
343
343
}
You can’t perform that action at this time.
0 commit comments