Recherche avancée

Médias (91)

Autres articles (8)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (508)

  • Which version of ffmpeg is newer ffmpeg-N-100679-g24dc6d386c or ffmpeg-N-4.3.1 ?

    2 février 2021, par Tanishq Banyal

    For my app i need FFmpeg, so i went to official website, for windows builds it said go here :-
https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2021-01-20-13-01

    


    But now i have a problem.
Which version of ffmpeg is newer ?

    


    ffmpeg-N-100679 or ffmpeg-n4.3.1-29 ?

    


    Is that "N" version unstable and "n4" version stable ?

    


    Any help would be appreciated

  • Laravel FFmpeg error Call to undefined method FFMpeg\FFMpeg::fromDisk()

    13 décembre 2019, par chengwei

    I’m using laravel ffmpeg to create a thumnail fot the video, but when i run the code, it return me

    Call to undefined method FFMpeg\FFMpeg::fromDisk()

    I don’t know what happen to this error, i’m follow the instruction in github.
    here is my code.

    use FFMpeg\FFMpeg;
    use FFMpeg\FFProbe;

    $thumbnail_name =  md5($request->video_name).'_thumbnail.jpg';
    $thumbnail_path = '/assets/' . $request->video_name;
    FFMpeg::fromDisk('videos')
           ->open($export_as)
           ->getFrameFromSeconds(10)
           ->export()
           ->toDisk('thumnails')
           ->save($thumbnail_path);

    i tried the fromFilesystem method, but it is not working, i also change the value in fromDisk() to public/assets even from c drive like C:\xampp\htdocs\vidpuz\public\assets but also not working, it keep return undefined method error.

  • (Laravel) Call to undefined method FFMpeg\FFMpeg::fromDisk() OR Unable to load FFMpeg

    2 décembre 2022, par Ahmed Kamel

    Call to undefined method FFMpeg\FFMpeg::fromDisk()
&
OR Unable to load FFMpeg

    


    I'm building a web application to upload a video and store it in cloud. I want to get the duration of the uploaded video. I tried to install laravel/FFMpeg package. After doing all the steps, I'm getting the above error.