Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
0c0ec4be
Commit
0c0ec4be
authored
Sep 11, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: dont copy duration when -t is used
Fixes Ticket445 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
23f5cff9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
ffmpeg.c
ffmpeg.c
+4
-1
No files found.
ffmpeg.c
View file @
0c0ec4be
...
...
@@ -3834,9 +3834,12 @@ static void opt_output_file(void *optctx, const char *filename)
}
/* copy global metadata by default */
if
(
!
o
->
metadata_global_manual
&&
nb_input_files
)
if
(
!
o
->
metadata_global_manual
&&
nb_input_files
)
{
av_dict_copy
(
&
oc
->
metadata
,
input_files
[
0
].
ctx
->
metadata
,
AV_DICT_DONT_OVERWRITE
);
if
(
o
->
recording_time
!=
INT64_MAX
)
av_dict_set
(
&
oc
->
metadata
,
"duration"
,
NULL
,
0
);
}
if
(
!
o
->
metadata_streams_manual
)
for
(
i
=
output_files
[
nb_output_files
-
1
].
ost_index
;
i
<
nb_output_streams
;
i
++
)
{
InputStream
*
ist
=
&
input_streams
[
output_streams
[
i
].
source_index
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment