Recherche avancée

Médias (2)

Mot : - Tags -/plugins

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)

  • Fill output video with black screen in case of missing the input stream or switch input UDP stream to another source

    13 mai 2018, par Omar Mahmoud

    I am using FFMPEG to record a streams from UDP sources, but unfortunately once the input stream missed, the ffmpeg stop recording, then append video to file once the stream observed by the server again.

    And as these recording files is time based so, I need fill video with black screen in case of missing the input stream.

    ffmpeg -i ’udp ://224.12.12.1:4000’ -t 00:45:00 -vcodec copy -acodec copy -f mpegts /record/eEs1526947.ts

    How can I do this, either by ffmpeg or other CLI based service/process ?

  • ffmpeg PNG to mp4 - Black screen

    29 mai 2018, par ilciavo

    I can create a mpg video using this line

    ffmpeg -f image2 -i 100%03d0.png movie.mpg

    But If I try creating an mp4 video I get a video with a black screen.

    ffmpeg -f image2 -i 100%03d0.png movie.mp4

    My directory with figures looks like :
    1000010.png,1000020.png,...1001260.png

  • How to stop ffmpeg when get a long black screen

    4 juin 2018, par sonseiya

    i want to know if there is a way to stop ffmpeg command when a black frame in an interval of time is detected.

    I mean, if the video i am getting is a black screen and it is of 3 seconds of duration, for example, i would like ffmpeg stops.

    Regards