ffmpeg vs avconv - Specifically use of lavfi in avconvffmpeg / avconv follow_mouse not working?How to replace avconv with (the real) ffmpeg and have it work right?Incorrect duration time in Audacious or any musical player when convert with ffmpeg or avconvHow to use Ffmpeg to convert wma to mp3 recursively, importing from txt file?How to specify flac compression level when converting with avconv?avconv: Saving MP4 Process HangsSoX suggestions - Binaural Beats?Symlink the ffmpeg command to avconv
Vim: Exit (:wq) with trailing exclamation mark ! What's the purpose?
How do you call a note, that stays through the whole song?
Was Locomotive BASIC significantly better than Sinclair BASIC?
Plane ticket price went down by 40% two weeks after I booked it. Is there anything I can do to get a refund?
Puzzling is a Forte of Mine
How to upgrade SSD from HDD for my mac book pro
Why aren't flights continued after losing a tire on rotation?
Regulation for ETFs in the UK after the Brexit
How to deal with an employee who is requesting a demotion?
Enumeration with direct and indirect properties
Old story about a man with tattoos that told stories
Why is the tangent of an angle called that?
Center a DIV unequally using CSS
Did Russia's economy boom between 1999 and 2013?
Can someone purchase a google subdomain?
Dynamically getting the complex number in a color wheel via moving mouse?
Draw the Ionising Radiation Hazard Symbol
Caro-Kann advance variation w/ 3. c5 dxc5
What was Jeremy Corbyn’s involvement in the Northern Ireland peace process?
Why would Earth be long-term unsuitable for an advanced alien species that's already colonized it?
What anti-aircraft magic adaptation would be better for dragons than flame spitting?
Meaning of the term "vertex" in the topic of skeletal formulae
Convexity/Concavity of Average Number of Jobs in M/M/1 Queue?
Why do laptop batteries have so many terminals?
ffmpeg vs avconv - Specifically use of lavfi in avconv
ffmpeg / avconv follow_mouse not working?How to replace avconv with (the real) ffmpeg and have it work right?Incorrect duration time in Audacious or any musical player when convert with ffmpeg or avconvHow to use Ffmpeg to convert wma to mp3 recursively, importing from txt file?How to specify flac compression level when converting with avconv?avconv: Saving MP4 Process HangsSoX suggestions - Binaural Beats?Symlink the ffmpeg command to avconv
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I have been trying to create a sine wave with avconv
. I have read online that avconv
is very similar to ffmpeg
and much of the syntax of one should be almost identical to be used in the other. Searching around online tells me that generating a sine wave can be done in ffmpeg
like so:
ffmpeg -f lavfi -i "sine=frequency=1000:duration=5" test.wav
I have tried the same code in avconv
, however it doesn't work and I get:
Unknown input format: 'lavfi'
I was wondering if there was a way to create a sine wave in avconv
and if someone could clarify how lavfi
commands can be used in avconv
.
Thanks!
sound video ffmpeg avconv
add a comment
|
I have been trying to create a sine wave with avconv
. I have read online that avconv
is very similar to ffmpeg
and much of the syntax of one should be almost identical to be used in the other. Searching around online tells me that generating a sine wave can be done in ffmpeg
like so:
ffmpeg -f lavfi -i "sine=frequency=1000:duration=5" test.wav
I have tried the same code in avconv
, however it doesn't work and I get:
Unknown input format: 'lavfi'
I was wondering if there was a way to create a sine wave in avconv
and if someone could clarify how lavfi
commands can be used in avconv
.
Thanks!
sound video ffmpeg avconv
avconv does not have the sine filter (and a million other filters). Why not use ffmpeg?
– llogan
Sep 17 at 17:43
@llogan I suppose the reason why I'm using avconv is because avconv is in the raspbian apt repository whereas ffmpeg - I assumed that the functionality of avconv and ffmpeg are the same
– Yharooer
Sep 18 at 23:08
add a comment
|
I have been trying to create a sine wave with avconv
. I have read online that avconv
is very similar to ffmpeg
and much of the syntax of one should be almost identical to be used in the other. Searching around online tells me that generating a sine wave can be done in ffmpeg
like so:
ffmpeg -f lavfi -i "sine=frequency=1000:duration=5" test.wav
I have tried the same code in avconv
, however it doesn't work and I get:
Unknown input format: 'lavfi'
I was wondering if there was a way to create a sine wave in avconv
and if someone could clarify how lavfi
commands can be used in avconv
.
Thanks!
sound video ffmpeg avconv
I have been trying to create a sine wave with avconv
. I have read online that avconv
is very similar to ffmpeg
and much of the syntax of one should be almost identical to be used in the other. Searching around online tells me that generating a sine wave can be done in ffmpeg
like so:
ffmpeg -f lavfi -i "sine=frequency=1000:duration=5" test.wav
I have tried the same code in avconv
, however it doesn't work and I get:
Unknown input format: 'lavfi'
I was wondering if there was a way to create a sine wave in avconv
and if someone could clarify how lavfi
commands can be used in avconv
.
Thanks!
sound video ffmpeg avconv
sound video ffmpeg avconv
asked Sep 17 at 11:59
YharooerYharooer
1,10710 silver badges20 bronze badges
1,10710 silver badges20 bronze badges
avconv does not have the sine filter (and a million other filters). Why not use ffmpeg?
– llogan
Sep 17 at 17:43
@llogan I suppose the reason why I'm using avconv is because avconv is in the raspbian apt repository whereas ffmpeg - I assumed that the functionality of avconv and ffmpeg are the same
– Yharooer
Sep 18 at 23:08
add a comment
|
avconv does not have the sine filter (and a million other filters). Why not use ffmpeg?
– llogan
Sep 17 at 17:43
@llogan I suppose the reason why I'm using avconv is because avconv is in the raspbian apt repository whereas ffmpeg - I assumed that the functionality of avconv and ffmpeg are the same
– Yharooer
Sep 18 at 23:08
avconv does not have the sine filter (and a million other filters). Why not use ffmpeg?
– llogan
Sep 17 at 17:43
avconv does not have the sine filter (and a million other filters). Why not use ffmpeg?
– llogan
Sep 17 at 17:43
@llogan I suppose the reason why I'm using avconv is because avconv is in the raspbian apt repository whereas ffmpeg - I assumed that the functionality of avconv and ffmpeg are the same
– Yharooer
Sep 18 at 23:08
@llogan I suppose the reason why I'm using avconv is because avconv is in the raspbian apt repository whereas ffmpeg - I assumed that the functionality of avconv and ffmpeg are the same
– Yharooer
Sep 18 at 23:08
add a comment
|
1 Answer
1
active
oldest
votes
avconv
and ffmpeg
do not have the same functionality: avconv
is missing many features (-f lavfi
) and filters (sine and aevalsrc). Because avconv
lacks these I don't see a way to generate a sine with it.
Your Raspbian must be old because, according to repology, both Raspbian Stable and Oldstable use FFmpeg and not Libav (avconv
).
Solutions:
One obvious but possibly impractical solution is to upgrade your Raspbian and use
ffmpeg
from the repo.Compile
ffmpeg
.Find a static build. johnvansickle.com offers
ffmpeg
for arm64, armhf, and armel. Maybe one of those will work on whatever Raspberry device you have.Use
sox
or some other tool.
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1174767%2fffmpeg-vs-avconv-specifically-use-of-lavfi-in-avconv%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
avconv
and ffmpeg
do not have the same functionality: avconv
is missing many features (-f lavfi
) and filters (sine and aevalsrc). Because avconv
lacks these I don't see a way to generate a sine with it.
Your Raspbian must be old because, according to repology, both Raspbian Stable and Oldstable use FFmpeg and not Libav (avconv
).
Solutions:
One obvious but possibly impractical solution is to upgrade your Raspbian and use
ffmpeg
from the repo.Compile
ffmpeg
.Find a static build. johnvansickle.com offers
ffmpeg
for arm64, armhf, and armel. Maybe one of those will work on whatever Raspberry device you have.Use
sox
or some other tool.
add a comment
|
avconv
and ffmpeg
do not have the same functionality: avconv
is missing many features (-f lavfi
) and filters (sine and aevalsrc). Because avconv
lacks these I don't see a way to generate a sine with it.
Your Raspbian must be old because, according to repology, both Raspbian Stable and Oldstable use FFmpeg and not Libav (avconv
).
Solutions:
One obvious but possibly impractical solution is to upgrade your Raspbian and use
ffmpeg
from the repo.Compile
ffmpeg
.Find a static build. johnvansickle.com offers
ffmpeg
for arm64, armhf, and armel. Maybe one of those will work on whatever Raspberry device you have.Use
sox
or some other tool.
add a comment
|
avconv
and ffmpeg
do not have the same functionality: avconv
is missing many features (-f lavfi
) and filters (sine and aevalsrc). Because avconv
lacks these I don't see a way to generate a sine with it.
Your Raspbian must be old because, according to repology, both Raspbian Stable and Oldstable use FFmpeg and not Libav (avconv
).
Solutions:
One obvious but possibly impractical solution is to upgrade your Raspbian and use
ffmpeg
from the repo.Compile
ffmpeg
.Find a static build. johnvansickle.com offers
ffmpeg
for arm64, armhf, and armel. Maybe one of those will work on whatever Raspberry device you have.Use
sox
or some other tool.
avconv
and ffmpeg
do not have the same functionality: avconv
is missing many features (-f lavfi
) and filters (sine and aevalsrc). Because avconv
lacks these I don't see a way to generate a sine with it.
Your Raspbian must be old because, according to repology, both Raspbian Stable and Oldstable use FFmpeg and not Libav (avconv
).
Solutions:
One obvious but possibly impractical solution is to upgrade your Raspbian and use
ffmpeg
from the repo.Compile
ffmpeg
.Find a static build. johnvansickle.com offers
ffmpeg
for arm64, armhf, and armel. Maybe one of those will work on whatever Raspberry device you have.Use
sox
or some other tool.
answered Sep 18 at 23:39
lloganllogan
6,45820 silver badges40 bronze badges
6,45820 silver badges40 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1174767%2fffmpeg-vs-avconv-specifically-use-of-lavfi-in-avconv%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
avconv does not have the sine filter (and a million other filters). Why not use ffmpeg?
– llogan
Sep 17 at 17:43
@llogan I suppose the reason why I'm using avconv is because avconv is in the raspbian apt repository whereas ffmpeg - I assumed that the functionality of avconv and ffmpeg are the same
– Yharooer
Sep 18 at 23:08