Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (42)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

Sur d’autres sites (7003)

  • Test if YouTube stream key is still active

    17 avril 2022, par codingmaster398

    I'm making a service to stream to YouTube, simply put.

    


    If the live stream ends or the stream key is no longer being used, we need to know. So far, it plays a short 3 second clip every once in a while, and if FFMpeg stops before it streams, we assume that the stream key is invalid. However, once we start a stream with the correct stream key, then end it and reset the stream key in another stream, the stream key still is being picked up as active.

    


    Is there any API to see if the stream key is still being used ?

    


  • Changing FPS of a video to 1 FPS, how to guarantee at least 1 frame ? [closed]

    26 janvier 2024, par Clash

    I've been converting videos with ffmpeg to 1 FPS using the following command :

    


    ffmpeg -i Example1.gif -c:v libaom-av1 -filter:v "fps=1" test1.webm


    


    However this has no output for very short videos, e.g. a gif that is 0.2s long and only has two frames. Is there a way to force ffmpeg to select at least one frame ? Thanks

    


  • Encode HDR content with ffmpeg directly into AV1

    13 mai 2021, par Felixkruemel

    I want to encode a short HDR clip from HEVC to AV1 while retaining all HDR informations. My goal is to use libsvtav1 as encoder.
What do I need to specify to retain HDR ?

    


    My current command looks like this, but I know that there's something missing :

    


    ffmpeg -i input-hdr.mkv -vcodec libsvtav1 -rc 0 -qp 23 -preset 5 -acodec copy -scodec copy -pix_fmt yuv420p10le output.mkv