Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (76)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (9984)

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

  • 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 &amp; " " &amp; quoted form of (POSIX path of file_)
           end repeat
           do script "for f in" &amp; filesString &amp; "; 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 ?

  • FFMPEG - Converting MKV to MP4 on Gdrive using rclone mount. ERROR : output file #0 does not contain any stream

    30 avril 2020, par Enrique Torrez

    I am trying to convert video files from my back-up rip files library that I have on my Gdrive account. I was successfully able to set up a dedicated server + plexserver + rclone + gdrive. I have files that are big and my family are not able to stream them due to the poor internet service that I have in my country. So I am trying to reduce the file size so it can be streamed directly

    &#xA;&#xA;

    My rclone mount script is :

    &#xA;&#xA;

    rclone mount gcache: /path  --tpslimit 5 --allow-other --acd-templink-threshold 0 --stats 1s --buffer-size 64M --timeout 5s --contimeout 5s --max-read-ahead 1G --drive-chunk-size 64M -vv &amp;&#xA;

    &#xA;&#xA;

    And my ffmpeg script is :

    &#xA;&#xA;

    ffmpeg -i origen.mkv -c:v copy -movflags faststart -strict -2 convertedfile.mp4&#xA;

    &#xA;&#xA;

    I had the following errors :

    &#xA;&#xA;

    moov atom not found&#xA;

    &#xA;&#xA;

    I used this command :

    &#xA;&#xA;

    AtomicParsley myVideo.mp4 -P&#xA;

    &#xA;&#xA;

    Now when I execute

    &#xA;&#xA;

    ffmpeg -i convertfile.mp4&#xA;

    &#xA;&#xA;

    I get this error :

    &#xA;&#xA;

    Output file #0 does not contain any stream&#xA;

    &#xA;&#xA;

    What am I doing wrong ? I need some help please.

    &#xA;