Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (105)

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

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12749)

  • Why is the ffmpeg `-vsync passthrough` option not extracting the same number of frames as shown in the printed info ?

    3 juin 2022, par aininja

    I am using ffmpeg to extract all the frames in a video. To get the timestamps of each frame, I'm using the -vf showinfo filter and matching the frame numbers. The problem is that sometimes the number of frames shown in the info doesn't match up with the number of frames extracted. Why could this be happening ? Is there some default output option that I need to change to avoid this ? Is this non-deterministic behavior a bug ?

    


    The commands used to extract and inspect the frames are :

    


    $ mkdir frames
$ ffmpeg -i video.mp4 -f image2 -vf showinfo -vsync passthrough -q:v 1 frames/%05d.jpg 2> info.txt
$ NUM_FRAMES_INFO=$(cat info.txt | grep pts_time | wc -l)
$ NUM_FRAMES_JPGS=$(ls frames/*.jpg | wc -l)
$ echo ${NUM_FRAMES_INFO} ?= ${NUM_FRAMES_JPGS}


    


    For most videos, this produces the correct outputs all the time. For some videos, however, there is a mismatch occasionally. Also worth mentioning is that MP4 videos are the only ones used and tested. These videos generally only had a single video stream in them.

    


  • Ignore xing number of frames if the file is larger than indicated.

    24 juillet 2014, par Carl Eugen Hoyos
    Ignore xing number of frames if the file is larger than indicated.
    

    Fixes ticket #3777.

    • [DH] libavformat/mp3dec.c
  • avcodec/cfhd : Check the number of tag/value pairs

    11 février 2016, par Michael Niedermayer
    avcodec/cfhd : Check the number of tag/value pairs
    

    Fixes potentially long loop
    Fixes : CID1351382/11

    Reviewed-by : Kieran Kunhya <kieran@kunhya.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cfhd.c