FFmpeg: Unrecognized option presetDoes ffmpeg version 0.5 configured on linux support encoding using Theora...
Can I use USB data pins as power source
As a new Ubuntu desktop 18.04 LTS user, do I need to use ufw for a firewall or is iptables sufficient?
Simplify an interface for flexibly applying rules to periods of time
Is it insecure to send a password in a `curl` command?
Problem with FindRoot
What is the adequate fee for a reveal operation?
What do you call the act of removing a part of a word and replacing it with an apostrophe
Are Roman Catholic priests ever addressed as pastor
Describing a chess game in a novel
What is the Japanese sound word for the clinking of money?
Why did it take so long to abandon sail after steamships were demonstrated?
What did “the good wine” (τὸν καλὸν οἶνον) mean in John 2:10?
Why do passenger jet manufacturers design their planes with stall prevention systems?
Planetary tidal locking causing asymetrical water distribution
How difficult is it to simply disable/disengage the MCAS on Boeing 737 Max 8 & 9 Aircraft?
My adviser wants to be the first author
A single argument pattern definition applies to multiple-argument patterns?
Brexit - No Deal Rejection
et qui - how do you really understand that kind of phraseology?
Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?
Meme-controlled people
Is it true that good novels will automatically sell themselves on Amazon (and so on) and there is no need for one to waste time promoting?
I am confused as to how the inverse of a certain function is found.
What is a ^ b and (a & b) << 1?
FFmpeg: Unrecognized option preset
Does ffmpeg version 0.5 configured on linux support encoding using Theora codec?How to use ffmpeg frei0r filter with mixer2 pluginsffmpeg for Mac “no such file or directory” (when file exists)FFmpeg multiple errors relative to pathFFMPEG extract audio from video with an annoying sound at the endErrors with FFMPEG on Ubuntu 16.04 While Using AMERGE: Segmentation Fault, et alFFMpeg concat demuxer unsafe file nameffmpeg: packaging H264@MPEGTS into Smooth StreamingHow to create a video file from images on hard disk using ffmpeg command line?How to stretch the WAV file to the same video length?
I'm using ffmpeg to convert yuv to mp4 losslesly in ubuntu 14.04.
My code is (without line splitting):
ffmpeg -f rawvideo -vcodec rawvideo -s 560x448 -r 40 -pix_fmt yuv420p -i
C_L_560x448_40_realtime_maxSSIM.yuv -c:v libx265 -preset ultrafast -qp 0
realtimeC_L_560x448_40_realtime_maxSSIM.mp4
I get
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
This is the full console output:
ffmpeg version N-80953-gd4c8e93 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
configuration:
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 50.100 / 57. 50.100
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.102 / 57. 0.102
libavfilter 6. 47.100 / 6. 47.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
Do you know how to fix this?
ubuntu ffmpeg
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm using ffmpeg to convert yuv to mp4 losslesly in ubuntu 14.04.
My code is (without line splitting):
ffmpeg -f rawvideo -vcodec rawvideo -s 560x448 -r 40 -pix_fmt yuv420p -i
C_L_560x448_40_realtime_maxSSIM.yuv -c:v libx265 -preset ultrafast -qp 0
realtimeC_L_560x448_40_realtime_maxSSIM.mp4
I get
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
This is the full console output:
ffmpeg version N-80953-gd4c8e93 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
configuration:
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 50.100 / 57. 50.100
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.102 / 57. 0.102
libavfilter 6. 47.100 / 6. 47.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
Do you know how to fix this?
ubuntu ffmpeg
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Which version of ffmpeg do you have? Show the console output.
– Gyan
Jul 10 '16 at 14:14
@Mulvya I added it right now.
– zinon
Jul 10 '16 at 14:29
1
You don't have libx265 (or any 3rd party encoders) linked. Get a binary from johnvansickle.com/ffmpeg
– Gyan
Jul 10 '16 at 14:42
1
I just want to add, using-qp 0isn't the way to do lossless encoding with libx265 (unlike libx264). Instead you need to add in-x265-params lossless=1
– Ely
Jul 11 '16 at 8:18
add a comment |
I'm using ffmpeg to convert yuv to mp4 losslesly in ubuntu 14.04.
My code is (without line splitting):
ffmpeg -f rawvideo -vcodec rawvideo -s 560x448 -r 40 -pix_fmt yuv420p -i
C_L_560x448_40_realtime_maxSSIM.yuv -c:v libx265 -preset ultrafast -qp 0
realtimeC_L_560x448_40_realtime_maxSSIM.mp4
I get
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
This is the full console output:
ffmpeg version N-80953-gd4c8e93 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
configuration:
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 50.100 / 57. 50.100
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.102 / 57. 0.102
libavfilter 6. 47.100 / 6. 47.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
Do you know how to fix this?
ubuntu ffmpeg
I'm using ffmpeg to convert yuv to mp4 losslesly in ubuntu 14.04.
My code is (without line splitting):
ffmpeg -f rawvideo -vcodec rawvideo -s 560x448 -r 40 -pix_fmt yuv420p -i
C_L_560x448_40_realtime_maxSSIM.yuv -c:v libx265 -preset ultrafast -qp 0
realtimeC_L_560x448_40_realtime_maxSSIM.mp4
I get
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
This is the full console output:
ffmpeg version N-80953-gd4c8e93 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
configuration:
libavutil 55. 28.100 / 55. 28.100
libavcodec 57. 50.100 / 57. 50.100
libavformat 57. 41.100 / 57. 41.100
libavdevice 57. 0.102 / 57. 0.102
libavfilter 6. 47.100 / 6. 47.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100
Unrecognized option 'preset'.
Error splitting the argument list: Option not found
Do you know how to fix this?
ubuntu ffmpeg
ubuntu ffmpeg
edited Jul 10 '16 at 14:28
zinon
asked Jul 10 '16 at 13:46
zinonzinon
567
567
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Which version of ffmpeg do you have? Show the console output.
– Gyan
Jul 10 '16 at 14:14
@Mulvya I added it right now.
– zinon
Jul 10 '16 at 14:29
1
You don't have libx265 (or any 3rd party encoders) linked. Get a binary from johnvansickle.com/ffmpeg
– Gyan
Jul 10 '16 at 14:42
1
I just want to add, using-qp 0isn't the way to do lossless encoding with libx265 (unlike libx264). Instead you need to add in-x265-params lossless=1
– Ely
Jul 11 '16 at 8:18
add a comment |
Which version of ffmpeg do you have? Show the console output.
– Gyan
Jul 10 '16 at 14:14
@Mulvya I added it right now.
– zinon
Jul 10 '16 at 14:29
1
You don't have libx265 (or any 3rd party encoders) linked. Get a binary from johnvansickle.com/ffmpeg
– Gyan
Jul 10 '16 at 14:42
1
I just want to add, using-qp 0isn't the way to do lossless encoding with libx265 (unlike libx264). Instead you need to add in-x265-params lossless=1
– Ely
Jul 11 '16 at 8:18
Which version of ffmpeg do you have? Show the console output.
– Gyan
Jul 10 '16 at 14:14
Which version of ffmpeg do you have? Show the console output.
– Gyan
Jul 10 '16 at 14:14
@Mulvya I added it right now.
– zinon
Jul 10 '16 at 14:29
@Mulvya I added it right now.
– zinon
Jul 10 '16 at 14:29
1
1
You don't have libx265 (or any 3rd party encoders) linked. Get a binary from johnvansickle.com/ffmpeg
– Gyan
Jul 10 '16 at 14:42
You don't have libx265 (or any 3rd party encoders) linked. Get a binary from johnvansickle.com/ffmpeg
– Gyan
Jul 10 '16 at 14:42
1
1
I just want to add, using
-qp 0 isn't the way to do lossless encoding with libx265 (unlike libx264). Instead you need to add in -x265-params lossless=1– Ely
Jul 11 '16 at 8:18
I just want to add, using
-qp 0 isn't the way to do lossless encoding with libx265 (unlike libx264). Instead you need to add in -x265-params lossless=1– Ely
Jul 11 '16 at 8:18
add a comment |
1 Answer
1
active
oldest
votes
For me this meant I had run configure with --disable-everything and enabled libx264, but not enabled its "encoder" so this fixed it up: --enable-libx264 --enable-encoder=libx264
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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/3.0/"u003ecc by-sa 3.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%2fsuperuser.com%2fquestions%2f1099110%2fffmpeg-unrecognized-option-preset%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
For me this meant I had run configure with --disable-everything and enabled libx264, but not enabled its "encoder" so this fixed it up: --enable-libx264 --enable-encoder=libx264
add a comment |
For me this meant I had run configure with --disable-everything and enabled libx264, but not enabled its "encoder" so this fixed it up: --enable-libx264 --enable-encoder=libx264
add a comment |
For me this meant I had run configure with --disable-everything and enabled libx264, but not enabled its "encoder" so this fixed it up: --enable-libx264 --enable-encoder=libx264
For me this meant I had run configure with --disable-everything and enabled libx264, but not enabled its "encoder" so this fixed it up: --enable-libx264 --enable-encoder=libx264
answered Nov 29 '18 at 6:00
rogerdpackrogerdpack
88831429
88831429
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1099110%2fffmpeg-unrecognized-option-preset%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
Which version of ffmpeg do you have? Show the console output.
– Gyan
Jul 10 '16 at 14:14
@Mulvya I added it right now.
– zinon
Jul 10 '16 at 14:29
1
You don't have libx265 (or any 3rd party encoders) linked. Get a binary from johnvansickle.com/ffmpeg
– Gyan
Jul 10 '16 at 14:42
1
I just want to add, using
-qp 0isn't the way to do lossless encoding with libx265 (unlike libx264). Instead you need to add in-x265-params lossless=1– Ely
Jul 11 '16 at 8:18