Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (16547)

  • FFMPEG. Using current datetime in the filename. strftime parameter doesn't seem to work

    5 novembre 2017, par LEM

    I’m connecting to an IP camera and I would like to create a new recording every 60 seconds. Each recording should have a different filename.
    I tried with this :

    ffmpeg -i <url> -y -c:v libx264 -an -f segment -segment_time 60 -strftime 1 "%Y-%m-%d_%H-%M-%S.mp4"
    </url>

    However, this always outputs a filename that looks like :

    m-H-S.mp4

    Any ideas what I must be missing ?

    Thanks

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

    &#xA;

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

    &#xA;

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

    &#xA;

    Do you have any idea to handle this ? Thanks.

    &#xA;

  • 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>&amp;1"); //convert
    $r = shell_exec("ffmpeg -i $file_path -acodec mp2 $file_path 2>&amp;1"); //compress

    I’m running the script on Ubuntu

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