Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (14)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • 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 (...)

  • 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 (...)

Sur d’autres sites (4621)

  • ffmpeg dont work like console

    27 février 2014, par theroqco

    This works fine at console

    ffmpeg -y -i a.mp4 -codec:v libx264 -profile:v high -vf scale=-1:360 -b:v 300k -maxrate 500k -bufsize 500k c.mp4 2> output.txt

    then i try this live. didnt get a-log.txt file.

    Set WScript = Server.CreateObject("WSCRIPT.SHELL")

       WScript.Run("C:\Inetpub\wwwroot\ffmpegfile\bin\ffmpeg.exe -y -i C:\Inetpub\wwwroot\videos\a.mp4 -codec:v libx264 -profile:v high -vf scale=-1:360 -b:v 300k -maxrate 300k -bufsize 500k C:\Inetpub\wwwroot\videos\new\a.mp4 2> C:\Inetpub\wwwroot\videos\new\a-log.txt")

       Set WScript = nothing

    How can i run this.
    thanks.

  • FFMPEG works on Console but doesn't work in PHP script on Ubuntu

    16 novembre 2016, par Victor Ferreira

    I have this aplication where I need to convert video files to MP4 and then compress it. I’m trying to use FFMPEG to get this to work. Tried the command lines in the console and it works great

    Converting

    ffmpeg -i teste.avi teste.mp4

    Compressing

    ffmpeg -i teste.mp4 -acodec mp2 teste.mp4

    But when I do the same within a PHP script, it starts yelling that something called GLIBCXX is not installed. This is the error :

    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required by /usr/lib/i386-linux-gnu/libjack.so.0)
    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by /usr/lib/i386-linux-gnu/libjack.so.0)
    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /usr/lib/i386-linux-gnu/libjack.so.0)
    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by /usr/lib/i386-linux-gnu/libzmq.so.3)
    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /usr/lib/i386-linux-gnu/libzmq.so.3)
    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required by /usr/lib/i386-linux-gnu/libopencv_core.so.2.4)
    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by /usr/lib/i386-linux-gnu/libopencv_core.so.2.4)
    ffmpeg: /opt/lampp/lib/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /usr/lib/i386-linux-gnu/libopencv_core.so.2.4)

    This is my script

    $r = shell_exec("ffmpeg -i $file_path $output_path 2>&1"); //convert
    $r = shell_exec("ffmpeg -i $file_path -acodec mp2 $file_path 2>&1"); //compress

    I’m running the script on Ubuntu

    @edit
    I can run, for example, shell_exec(’ls’)

  • FFMPEG converts HEVC with Alpha mov to PNG sequence not work well

    22 juillet 2023, par topfortune

    I have a mov file with HEVC with Alpha codec on Mac. The mov file has no background color, but have some foreground contents in it. I want to use FFMPEG to grab some PNG pictures from it. Following is the command line I used to grab the first image from the video.

    


    ffmpeg -i hevc-alpha-video.mov -r 1 -pix_fmt rgba -frames:v 1 out.png

    


    I can get the output PNG picture. But it has black background color. What I want is the transparent background PNG picture.

    


    Do you have any idea to handle this ? Thanks.