Recherche avancée

Médias (91)

Autres articles (41)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8196)

  • FFmpeg command not working

    6 mars 2016, par user1461465

    I am trying to use the command given in the selected answer here, but it does not work when executed. I know that everything else is working since I can create thumbnails with a different command. What is the proper way to format this ? I am assuming that the problem is with " -vsync 0 -vf select='not(mod(n,100))' " but have not been able to get it working.

    $cmd = $ffmpeg . " -i " . $src . " -vsync 0 -vf select='not(mod(n,100))' " .  $out . ".jpg";
    exec($cmd);
  • Ffmpeg command not found in inside laravel. Even it is working in bash

    14 février 2018, par Vimal Mistry

    I am working in Laravel 5.4 project. I have to use ffmpeg for generate thumbnail from videos. I am using cloudlinux on my server. I installed ffmpeg in my server.

    It is working fine in ssh bash. All the functionality working there.
    But problem is when I am trying to call from inside laravel using exec() or shell_exec(). Its returns error like "sh : ffmpeg command not found". I tryied full path also like "/usr/bin/ffmpeg -etc-". In that case ’No file or directory found’ errors shows. While it is installed in this path. and working in bash command.

    Please give some suggestion or solution for it.

  • How to check ffmpeg is working in my server on not

    14 novembre 2019, par Vishal Mehra

    I have installed ffmpeg package in my bluehost server. How to check ffmpeg is working in my server on not

    Here is the output ffmpeg path in server
    root@server.rkv.igq.mybluehost.me [ ]# whereis ffmpeg

    ffmpeg : /usr/bin/ffmpeg /usr/local/bin/ffmpeg /usr/include/ffmpeg /usr/share/ffm peg /usr/share/man/man1/ffmpeg.1.gz /usr/src/ffmpegscript/ffmpeg

    when i am trying to run command (ffmpeg -i sample.mp4 sample.avi) using putty it is working fine but when i am trying using php it is not working here is my php code
    include ’usr/local/bin/ffmpeg/’ ;

    shell_exec(’ffmpeg -i sample.mp4 sample.avi’) ;