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
ca410b4e
Commit
ca410b4e
authored
Dec 08, 2011
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: update demuxers section
Cleanup tags usage and update commandline examples.
parent
9bdfe9ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
demuxers.texi
doc/demuxers.texi
+3
-3
No files found.
doc/demuxers.texi
View file @
ca410b4e
...
@@ -49,19 +49,19 @@ sequence of filenames of the form @file{i%m%g-1.jpg},
...
@@ -49,19 +49,19 @@ sequence of filenames of the form @file{i%m%g-1.jpg},
The size, the pixel format, and the format of each image must be the
The size, the pixel format, and the format of each image must be the
same for all the files in the sequence.
same for all the files in the sequence.
The following example shows how to use @
file{ffmpeg
} for creating a
The following example shows how to use @
command{avconv
} for creating a
video from the images in the file sequence @file{img-001.jpeg},
video from the images in the file sequence @file{img-001.jpeg},
@file{img-002.jpeg}, ..., assuming an input framerate of 10 frames per
@file{img-002.jpeg}, ..., assuming an input framerate of 10 frames per
second:
second:
@example
@example
ffmpeg -r 10 -f image2 -i 'img-%03d.jpeg' out.avi
avconv -i 'img-%03d.jpeg' -r 10 out.mkv
@end example
@end example
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
@file{img.jpeg} you can employ the command:
@file{img.jpeg} you can employ the command:
@example
@example
ffmpeg -f image2
-i img.jpeg img.png
avconv
-i img.jpeg img.png
@end example
@end example
@section applehttp
@section applehttp
...
...
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