Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (60)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (4704)

  • avcodec/allcodecs : Don't wrap supported_framerates

    10 mars, par Andreas Rheinhardt
    avcodec/allcodecs : Don't wrap supported_framerates
    

    Only two encoders (the native MPEG-1/2 ones) provide
    supported_framerates and they don't implement the
    get_supported_config callback. It is highly unlikely that
    any codec will set supported_framerates dynamically at all,
    so remove the code querying for frame rates.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/allcodecs.c
  • Play each frame once at fixed rate in ffmpeg

    8 septembre 2023, par Wei Hong

    I have a bunch of videos at various frame rates, some with variable frame rate.

    &#xA;

      &#xA;
    1. First, I wish to play back every frame only once, at 24 fps, no exceptions. I do not want any extra frames or dropped frames. I know that the play length may well change, and audio is unimportant.

      &#xA;

    2. &#xA;

    3. Next, I wish to do the above after having thrown out all duplicate frames.

      &#xA;

    4. &#xA;

    &#xA;

    Here's what I've been using in a Windows batch file. It almost always works, but for some videos I've caught it dropping a frame :

    &#xA;

    for %%i in (*.mp4) do ffmpeg -y -i "%%i" -an -c copy -f h264 "%%i.h264"&#xA;&#xA;for %%i in (*.h264) do ffmpeg -y -r 24 -i "%%i" -c copy "%%i.R.mp4"&#xA;&#xA;for %%i in (*.R.mp4) do ffmpeg -y -i "%%i"  -b:v 40M -vf mpdecimate,setpts=N/24/TB "MPD%%i.mp4"&#xA;

    &#xA;

    What am I doing wrong ?

    &#xA;

    EDIT : The dropped frames do greatly differ from the previous frames so it's not just mpdecimate at work.

    &#xA;

  • FFmpeg dash manifest '-window_size'

    14 novembre 2018, par edwinbradford

    In the FFmpeg DASH documentation I don’t understand the purpose of -window_size which is explained as :

    Set the maximum number of segments kept in the manifest.

    If my video is 30 seconds long, the GOP size is 4 seconds and the segment length is 4 seconds, what is the meaning and purpose of a parameter to control the maximum number of segments kept in the manifest, when does this parameter need to be used and how do you determine valid values ?

    I’m guessing that the stream is being loaded into memory and the number of segments in the manifest controls how much is kept in memory at one time but it’s just a wild guess and I can’t find any further explanation.

    I am not live streaming in case it’s relevant.