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
9846a9c7
Commit
9846a9c7
authored
May 31, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Jun 11, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riff: add ISMP/timecode tag.
parent
0478d5f9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
ffprobe.texi
doc/ffprobe.texi
+1
-1
general.texi
doc/general.texi
+1
-0
riff.c
libavformat/riff.c
+2
-1
No files found.
doc/ffprobe.texi
View file @
9846a9c7
...
@@ -410,7 +410,7 @@ MOV timecode is extracted from tmcd track, so is available in the tmcd
...
@@ -410,7 +410,7 @@ MOV timecode is extracted from tmcd track, so is available in the tmcd
stream metadata (@option
{
-show
_
streams
}
, see @var
{
TAG:timecode
}
).
stream metadata (@option
{
-show
_
streams
}
, see @var
{
TAG:timecode
}
).
@item
@item
DV
and GXF
timecodes are available in format metadata
DV
, GXF and AVI
timecodes are available in format metadata
(@option
{
-show
_
format
}
, see @var
{
TAG:timecode
}
).
(@option
{
-show
_
format
}
, see @var
{
TAG:timecode
}
).
@end itemize
@end itemize
...
...
doc/general.texi
View file @
9846a9c7
...
@@ -890,6 +890,7 @@ performance on systems without hardware floating point support).
...
@@ -890,6 +890,7 @@ performance on systems without hardware floating point support).
@multitable @columnfractions .4 .1 .1
@multitable @columnfractions .4 .1 .1
@item Codec/format @tab Read @tab Write
@item Codec/format @tab Read @tab Write
@item AVI @tab X @tab X
@item DV @tab X @tab X
@item DV @tab X @tab X
@item GXF @tab X @tab X
@item GXF @tab X @tab X
@item MOV @tab X @tab
@item MOV @tab X @tab
...
...
libavformat/riff.c
View file @
9846a9c7
...
@@ -389,6 +389,7 @@ const AVMetadataConv ff_riff_info_conv[] = {
...
@@ -389,6 +389,7 @@ const AVMetadataConv ff_riff_info_conv[] = {
{
"IPRD"
,
"album"
},
{
"IPRD"
,
"album"
},
{
"IPRT"
,
"track"
},
{
"IPRT"
,
"track"
},
{
"ISFT"
,
"encoder"
},
{
"ISFT"
,
"encoder"
},
{
"ISMP"
,
"timecode"
},
{
"ITCH"
,
"encoded_by"
},
{
"ITCH"
,
"encoded_by"
},
{
0
},
{
0
},
};
};
...
@@ -396,7 +397,7 @@ const AVMetadataConv ff_riff_info_conv[] = {
...
@@ -396,7 +397,7 @@ const AVMetadataConv ff_riff_info_conv[] = {
const
char
ff_riff_tags
[][
5
]
=
{
const
char
ff_riff_tags
[][
5
]
=
{
"IARL"
,
"IART"
,
"ICMS"
,
"ICMT"
,
"ICOP"
,
"ICRD"
,
"ICRP"
,
"IDIM"
,
"IDPI"
,
"IARL"
,
"IART"
,
"ICMS"
,
"ICMT"
,
"ICOP"
,
"ICRD"
,
"ICRP"
,
"IDIM"
,
"IDPI"
,
"IENG"
,
"IGNR"
,
"IKEY"
,
"ILGT"
,
"ILNG"
,
"IMED"
,
"INAM"
,
"IPLT"
,
"IPRD"
,
"IENG"
,
"IGNR"
,
"IKEY"
,
"ILGT"
,
"ILNG"
,
"IMED"
,
"INAM"
,
"IPLT"
,
"IPRD"
,
"IPRT"
,
"ISBJ"
,
"ISFT"
,
"ISHP"
,
"ISRC"
,
"ISRF"
,
"ITCH"
,
"IPRT"
,
"ISBJ"
,
"ISFT"
,
"ISHP"
,
"IS
MP"
,
"IS
RC"
,
"ISRF"
,
"ITCH"
,
{
0
}
{
0
}
};
};
...
...
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