Recherche avancée

Médias (91)

Autres articles (111)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

  • FFMPEG MP4 from a m3u8 stream results in a few black frames

    14 avril 2020, par roosevelt

    I'm noticing an odd behavior and not sure how to tackle it through FFMPEG. Basically, I'm downloading some ts files from a stream and making an MP4 out of them. I don't need to encode them since they are already encoded.

    



    Here's the command :

    



    ffmpeg -nostdin -y -ss 3 -i https://d2nvs31859zcd8.cloudfront.net/d33af82762361135e8ba_yassuo_37349116016_1403122741/chunked/index-muted-EIVFBWYS1V.m3u8 -t 50 -c copy Test.mp4


    



    If I run the MP4 file in Quicktime player, it seems like there are one or two black frames in the beginning. How do I get rid of that using the above command ?

    



    I also tried downloading the .ts files and concat them via FFMPEG. But the result is the same. First few frames are black.

    



    ffmpeg -nostdin -y -i "concat:0.ts|1.ts|2.ts|3.ts|4.ts|5.ts|6.ts" -c copy Test2.mp4


    



    Seems like VLC doesn't show the black frame but it's apparent on the Quicktime player.

    



    Thanks

    


  • ffmpeg - how to add text on black background at end of video for 10 sec ?

    3 octobre 2015, par jamie

    I have some mp4 files I’d like to add some white text reading something like

    "StackOver Flow Rules see more at www.stack.com/324324 bla bla and some more words here !"

    To the end of the videos on a black background that last 10 seconds.

    How would I achieve this with FFMPEG ?

  • Is there a way to detect black on FFMPEG video files

    22 novembre 2019, par A Person

    I am trying to run a QC check on my video files.

    I know that there is a way to detect black frame or audio loss in a video file. Can anyone help me with how the syntax is written ?

    I have tried doing the following but I am having issues as I do not know how to tell from the output.

    ffmpeg -i inputfile.mxf -vf blackdetect=d=0.1:pix_th=.1 -f rawvideo -y /dev/null

    Also is there ay ways to check if I have any packets that are in error by using ffprobe or ffmpeg

    I also do not understand waht this 0.1:pix_th=.1 is doing ?

    EDIT* :

    I have used this command now

    ffmpeg -i 01.mxf -vf blackdetect=d=0:pix_th=.01 -f rawvideo -y /NUL

    this gives me

    [blackdetect @ 000001a2ed843740] black_start:0.04 black_end:2

    black_duration:1.96

    [mpeg2video @ 000001a2ed86efc0] ac-tex damaged at 45 304.08

    bitrate=829328.3kbits/s dup=1 drop=0 speed= 5.6x

    However, the actual video has more than this for the black frame.

    is there a way to tell it to continue looking at the video and get all black frames, not just the first instance.