Recherche avancée

Médias (91)

Autres articles (80)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (2266)

  • Automator & ffmpeg : Create video from .png image sequence in folder

    1er septembre 2016, par imgoingtoshabooms

    ffmpeg -framerate 29.97 -i image-%03d.png -vcodec prores -profile:v 3 output.mov

    Trying to run a shell script or applescript in Automator to create a service based on the above but dont really know where to begin. This is what i’d want :

    1) select the parent folder, within are 1-2k .png files. i want to use glob i think, so i dont have to specify filename prefix (i.e. image- above)
    2) ffmpeg stitches all these clips into a prores hq qt file
    3) outputs this file to the same folder

    This is what i have so far but i know its probably way offbase—workflow fails to run :

    on run {input, parameters}
       tell application "Terminal"
           activate
           set filesString to ""
           repeat with file_ in input
               set filesString to filesString & " " & quoted form of (POSIX path of file_)
           end repeat
           do script "for f in" & filesString & "; do
    /Users/brianglover/Documents/ffmpeg/ffmpeg -i -pattern_type glob -i "$f.png"  -vcodec prores -profile:v 3 \"${f%.*}.mov\"
    done"
       end tell
       return input
    end run

    I’m missing a lot clearly...help ?

  • How to embed pic_timing SEI wallclock timecodes in RTMP streaming ?

    13 novembre 2023, par MorenoGentili

    I need to stream my desktop to the AWS MediaLive service and, as a requirement, I must include wallclock timecodes in the stream. The AWS support kindly informed me that for h.264 encoded streams, I need to provide timecodes as "pic_timing SEI messages".

    



    I'm streaming with FFmpeg via the RTMP protocol on Windows 10 so, I tried adding the use_wallclock_as_timestamps and copyts flags to my command.

    



    ffmpeg -f gdigrab -framerate 30 -offset_x 0 -offset_y 0 -video_size 1920x1080 -show_region 1 -use_wallclock_as_timestamps 1 -i desktop -vf scale=320:240 -c:v libx264 -c:a aac -profile:v main -level 3.1 -pix_fmt yuv420p -copyts -f flv rtmp://<ip>:1935/<app>/<stream>&#xA;</stream></app></ip>

    &#xA;&#xA;

    However, the timecodes are not picked up by AWS MediaLive.

    &#xA;&#xA;

    My questions are :

    &#xA;&#xA;

      &#xA;
    • Does the use_wallclock_as_timestamps flag actually create timecodes as "pic_timing SEI messages" as required ?
    • &#xA;

    • If not, how do I add wallclock timecodes as "pic_timing SEI messages" ? It doesn't have to be every frame. Every 2 or 3 seconds would suffice.
    • &#xA;

    &#xA;&#xA;

    I'm stumped. I couldn't find the answer in the FFmpeg documentation.

    &#xA;&#xA;

    Thanks for your help.

    &#xA;

  • How to embed pic_timing SEI wall clock timecodes in RTMP streaming ?

    16 mai 2019, par MorenoGentili

    I need to stream my desktop to the AWS MediaLive service and, as a requirement, I must include wallclock timecodes in the stream. The AWS support kindly informed me that for h.264 encoded streams, I need to provide timecodes as "pic_timing SEI messages".

    I’m streaming with Ffmpeg via the RTMP protocol on Windows 10 so, I tried adding the use_wallclock_as_timestamps and copyts flags to my command.

    ffmpeg -f gdigrab -framerate 30 -offset_x 0 -offset_y 0 -video_size 1920x1080 -show_region 1 -use_wallclock_as_timestamps 1 -i desktop -vf scale=320:240 -c:v libx264 -c:a aac -profile:v main -level 3.1 -pix_fmt yuv420p -copyts -f flv rtmp://<ip>:1935/<app>/<stream>
    </stream></app></ip>

    However, the timecodes are not picked up by AWS MediaLive.

    My questions are :

    • Does the use_wallclock_as_timestamps flag actually create timecodes as "pic_timing SEI messages" as required ?
    • If not, how do I add wallclock timecodes as "pic_timing SEI messages" ? It doesn’t have to be every frame. Every 2 or 3 seconds would suffice.

    I’m stumped. I couldn’t find the answer in the Ffmpeg documentation.

    Thanks for your help.