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?













1















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?










share|improve this question
















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 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
















1















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?










share|improve this question
















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 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














1












1








1








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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



















  • 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 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

















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










1 Answer
1






active

oldest

votes


















0














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






share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    0














    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






    share|improve this answer




























      0














      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






      share|improve this answer


























        0












        0








        0







        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






        share|improve this answer













        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







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 29 '18 at 6:00









        rogerdpackrogerdpack

        88831429




        88831429






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

            Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

            Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...