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
0325e01f
Commit
0325e01f
authored
Aug 04, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/demuxers: itemize image2 examples and put them in a dedicated subsection
parent
cb5bb521
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
demuxers.texi
doc/demuxers.texi
+9
-4
No files found.
doc/demuxers.texi
View file @
0325e01f
...
@@ -71,18 +71,23 @@ Set the video size of the images to read. If not specified the video
...
@@ -71,18 +71,23 @@ Set the video size of the images to read. If not specified the video
size is guessed from the first image file in the sequence.
size is guessed from the first image file in the sequence.
@end table
@end table
The following example shows how to use @command{ffmpeg} for creating a
@subsection Examples
video from the images in the file sequence @file{img-001.jpeg},
@file{img-002.jpeg}, ..., assuming an input frame rate of 10 frames per
@itemize
second:
@item
Use @command{ffmpeg} for creating a video from the images in the file
sequence @file{img-001.jpeg}, @file{img-002.jpeg}, ..., assuming an
input frame rate of 10 frames per second:
@example
@example
ffmpeg -i 'img-%03d.jpeg' -r 10 out.mkv
ffmpeg -i 'img-%03d.jpeg' -r 10 out.mkv
@end example
@end example
@item
As above, but start by reading from a file with index 100 in the sequence:
As above, but start by reading from a file with index 100 in the sequence:
@example
@example
ffmpeg -start_number 100 -i 'img-%03d.jpeg' -r 10 out.mkv
ffmpeg -start_number 100 -i 'img-%03d.jpeg' -r 10 out.mkv
@end example
@end example
@end itemize
Note that the pattern must not necessarily contain "%d" or
Note that the pattern must not necessarily contain "%d" or
"%0@var{N}d", for example to convert a single image file
"%0@var{N}d", for example to convert a single image file
...
...
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