Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (106)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (13667)

  • Your FFProbe version is too old and does not support

    19 janvier 2021, par SupunSpera

    I am Using Laravel 8 and ffmpeg to save thumbnail from a video.

    


    

    

      $path = Storage::putFile('public/uploads/videos', new File($data['video']));
        $path_parts = explode("uploads/videos/", $path);
        $video = explode("public/videos/", $path_parts[1]);
        $video_name = $video[0];
        $thumbnail_name = explode('.', $video_name);
        $thumbnail_name1 = $thumbnail_name[0] . ".png";

        $thumbnail = 'public/videos/thumbnails/' . $thumbnail_name1;
        FFMpeg::fromDisk('local')
            ->open($path)
            ->getFrameFromSeconds(5)
            ->export()
            ->toDisk('local')
            ->save($thumbnail);

    


    


    



    I receive this error. Your FFProbe version is too old and does not support.

    


  • How to print the video meta output by the browser version of ffmpeg.wasm to the console of Google Chrome ?

    17 janvier 2021, par helloAl

    I would like to ask about how to use the browser version of ffmpeg.wasm.

    


    Through my investigation, I know that the following command can be used to output the video metadata to a file in the terminal of windows or mac.

    


    ffmpeg -i testvideo.mp4 -f ffmetadata testoutput.txt


    


    and then I can get this matadata like this :
enter image description here

    


    I want to parse the metadata of the video through the browser, and then print the metadata to the Google console (or output to a file). At present, I know that the browser version of ffmpeg.wasm can achieve this function, but I have looked at its examples, which does not involve this part of the content. (https://github.com/ffmpegwasm/ffmpeg.wasm/blob/master/examples/browser/image2video.html)

    


    But I want to print it to the console of Google Chrome through the browser version(usage:brower) of ffmpeg.wasm (https://github.com/ffmpegwasm/ffmpeg.wasm).
So I want to ask you how to achieve this, thank you.

    


  • Updated FFMPEG version required for uploading App on Play Store [closed]

    16 décembre 2020, par Manoj Kumar

    E/FFmpeg: Exception while trying to run: [/data/user/0/com.outhum.media/files/ffmpeg, -version] java.io.IOException: Cannot run program "/data/user/0/com.outhum.media/files/ffmpeg": error=13, Permission denied at java.lang.ProcessBuilder.start(ProcessBuilder.java:1050) at nl.bravobit.ffmpeg.ShellCommand.run(ShellCommand.java:15) at nl.bravobit.ffmpeg.FFcommandExecuteAsyncTask.doInBackground(FFcommandExecuteAsyncTask.java:43) at nl.bravobit.ffmpeg.FFcommandExecuteAsyncTask.doInBackground(FFcommandExecuteAsyncTask.java:12) at android.os.AsyncTask$3.call(AsyncTask.java:378) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) at java.lang.Thread.run(Thread.java:919) Caused by: java.io.IOException: error=13, Permission denied at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.<init>(UNIXProcess.java:133) at java.lang.ProcessImpl.start(ProcessImpl.java:141) </init>&#xA;Thanks in advance, I have a query related to FFMPEG version please help me out. I am using FFMPEG (version - nl.bravobit:android-ffmpeg:1.1.7). So, I am going to upload my application on play store but according to google terms, minimum target SDK version is required 29 for FFMPEG. I upgraded my target SDK to 29. But while I am updating my SDK version of FFMPEG, that is not working. Getting Permission denied error type. but with version 28 is working fine. So my concern is How to get that permission ??

    &#xA;

    Getting this error after execution-

    &#xA;

    "E/FFmpeg : Exception while trying to run : [/data/user/0/com.outhum.media/files/ffmpeg, -version]&#xA;java.io.IOException : Cannot run program "/data/user/0/com.outhum.media/files/ffmpeg" : error=13, Permission denied&#xA;"

    &#xA;