Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
9aaa70a8
Commit
9aaa70a8
authored
Jan 24, 2012
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
faq: document af_aconvert quirks using lavfi.
parent
ece329d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
faq.texi
doc/faq.texi
+18
-0
No files found.
doc/faq.texi
View file @
9aaa70a8
...
@@ -292,6 +292,24 @@ The solution is to apply the @option{-profile} option to the video stream only
...
@@ -292,6 +292,24 @@ The solution is to apply the @option{-profile} option to the video stream only
by using @url
{
http://ffmpeg.org/ffmpeg.html#Stream-specifiers-1, Stream specifiers
}
.
by using @url
{
http://ffmpeg.org/ffmpeg.html#Stream-specifiers-1, Stream specifiers
}
.
Appending @code
{
:v
}
to it will do exactly that.
Appending @code
{
:v
}
to it will do exactly that.
@section Using @option
{
-f lavfi
}
, audio becomes mono for no apparent reason.
Use @option
{
-dumpgraph -
}
to find out exactly where the channel layout is
lost.
Most likely, it is through @code
{
auto-inserted aconvert
}
. Try to understand
why the converting filter was needed at that place.
Just before the output is a lilely place, as @option
{
-f lavfi
}
currently
only support packed S16.
Then insert the correct @code
{
aconvert
}
explicitly in the filter graph,
specifying the exact format.
@example
aconvert=s16:stereo:packed
@end example
@chapter Development
@chapter Development
@section Are there examples illustrating how to use the FFmpeg libraries, particularly libavcodec and libavformat?
@section Are there examples illustrating how to use the FFmpeg libraries, particularly libavcodec and libavformat?
...
...
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