Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
1c522e38
Commit
1c522e38
authored
12 years ago
by
Stefano Sabatini
Browse files
Options
Downloads
Patches
Plain Diff
lavf/segment: guess list type from list filename suffix
parent
dc7e4d68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/muxers.texi
+7
-3
7 additions, 3 deletions
doc/muxers.texi
libavformat/segment.c
+9
-2
9 additions, 2 deletions
libavformat/segment.c
libavformat/version.h
+1
-1
1 addition, 1 deletion
libavformat/version.h
with
17 additions
and
6 deletions
doc/muxers.texi
+
7
−
3
View file @
1c522e38
...
@@ -466,8 +466,9 @@ time.
...
@@ -466,8 +466,9 @@ time.
The segment muxer works best with a single constant frame rate video.
The segment muxer works best with a single constant frame rate video.
Optionally it can generate a flat list of the created segments, one segment
Optionally it can generate a list of the created segments, by setting
per line, by setting the option @var{segment_list}.
the option @var{segment_list}. The list type is specified by the
@var{segment_list_type} option.
The segment muxer supports the following options:
The segment muxer supports the following options:
...
@@ -503,12 +504,15 @@ muxer according to the provided pattern, and should not contain the
...
@@ -503,12 +504,15 @@ muxer according to the provided pattern, and should not contain the
@var{segment_start_time} and @var{segment_end_time} specify
@var{segment_start_time} and @var{segment_end_time} specify
the segment start and end time expressed in seconds.
the segment start and end time expressed in seconds.
A list file with the suffix @code{".ext"} will auto-select this format.
@item m3u8
@item m3u8
Generate an extended M3U8 file, version 4, compliant with
Generate an extended M3U8 file, version 4, compliant with
@url{http://tools.ietf.org/id/draft-pantos-http-live-streaming-08.txt}.
@url{http://tools.ietf.org/id/draft-pantos-http-live-streaming-08.txt}.
A list file with the suffix @code{".m3u8"} will auto-select this format.
@end table
@end table
Default value is "flat"
.
If not specified the type is guessed from the list file name suffix
.
@item segment_time @var{time}
@item segment_time @var{time}
Set segment duration to @var{time}. Default value is "2".
Set segment duration to @var{time}. Default value is "2".
@item segment_time_delta @var{delta}
@item segment_time_delta @var{delta}
...
...
This diff is collapsed.
Click to expand it.
libavformat/segment.c
+
9
−
2
View file @
1c522e38
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
#include
"libavutil/mathematics.h"
#include
"libavutil/mathematics.h"
typedef
enum
{
typedef
enum
{
LIST_TYPE_UNDEFINED
=
-
1
,
LIST_TYPE_FLAT
=
0
,
LIST_TYPE_FLAT
=
0
,
LIST_TYPE_EXT
,
LIST_TYPE_EXT
,
LIST_TYPE_M3U8
,
LIST_TYPE_M3U8
,
...
@@ -282,9 +283,15 @@ static int seg_write_header(AVFormatContext *s)
...
@@ -282,9 +283,15 @@ static int seg_write_header(AVFormatContext *s)
if
(
!
oc
)
if
(
!
oc
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
if
(
seg
->
list
)
if
(
seg
->
list
)
{
if
(
seg
->
list_type
==
LIST_TYPE_UNDEFINED
)
{
if
(
av_match_ext
(
seg
->
list
,
"ext"
))
seg
->
list_type
=
LIST_TYPE_EXT
;
else
if
(
av_match_ext
(
seg
->
list
,
"m3u8"
))
seg
->
list_type
=
LIST_TYPE_M3U8
;
else
seg
->
list_type
=
LIST_TYPE_FLAT
;
}
if
((
ret
=
segment_list_open
(
s
))
<
0
)
if
((
ret
=
segment_list_open
(
s
))
<
0
)
goto
fail
;
goto
fail
;
}
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
seg
->
has_video
+=
seg
->
has_video
+=
...
@@ -411,7 +418,7 @@ static const AVOption options[] = {
...
@@ -411,7 +418,7 @@ static const AVOption options[] = {
{
"segment_format"
,
"set container format used for the segments"
,
OFFSET
(
format
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
E
},
{
"segment_format"
,
"set container format used for the segments"
,
OFFSET
(
format
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
E
},
{
"segment_list"
,
"set the segment list filename"
,
OFFSET
(
list
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
E
},
{
"segment_list"
,
"set the segment list filename"
,
OFFSET
(
list
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
E
},
{
"segment_list_size"
,
"set the maximum number of playlist entries"
,
OFFSET
(
list_size
),
AV_OPT_TYPE_INT
,
{.
dbl
=
5
},
0
,
INT_MAX
,
E
},
{
"segment_list_size"
,
"set the maximum number of playlist entries"
,
OFFSET
(
list_size
),
AV_OPT_TYPE_INT
,
{.
dbl
=
5
},
0
,
INT_MAX
,
E
},
{
"segment_list_type"
,
"set the segment list type"
,
OFFSET
(
list_type
),
AV_OPT_TYPE_INT
,
{.
dbl
=
LIST_TYPE_
FLAT
},
0
,
LIST_TYPE_NB
-
1
,
E
,
"list_type"
},
{
"segment_list_type"
,
"set the segment list type"
,
OFFSET
(
list_type
),
AV_OPT_TYPE_INT
,
{.
dbl
=
LIST_TYPE_
UNDEFINED
},
-
1
,
LIST_TYPE_NB
-
1
,
E
,
"list_type"
},
{
"flat"
,
"flat format"
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
LIST_TYPE_FLAT
},
INT_MIN
,
INT_MAX
,
0
,
"list_type"
},
{
"flat"
,
"flat format"
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
LIST_TYPE_FLAT
},
INT_MIN
,
INT_MAX
,
0
,
"list_type"
},
{
"ext"
,
"extended format"
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
LIST_TYPE_EXT
},
INT_MIN
,
INT_MAX
,
0
,
"list_type"
},
{
"ext"
,
"extended format"
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
LIST_TYPE_EXT
},
INT_MIN
,
INT_MAX
,
0
,
"list_type"
},
{
"m3u8"
,
"M3U8 format"
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
LIST_TYPE_M3U8
},
INT_MIN
,
INT_MAX
,
0
,
"list_type"
},
{
"m3u8"
,
"M3U8 format"
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
LIST_TYPE_M3U8
},
INT_MIN
,
INT_MAX
,
0
,
"list_type"
},
...
...
This diff is collapsed.
Click to expand it.
libavformat/version.h
+
1
−
1
View file @
1c522e38
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 25
#define LIBAVFORMAT_VERSION_MINOR 25
#define LIBAVFORMAT_VERSION_MICRO 10
2
#define LIBAVFORMAT_VERSION_MICRO 10
3
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment