Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (99)

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

  • 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 ;

Sur d’autres sites (9699)

  • timecode of scene change detection ffmpeg

    31 octobre 2020, par Михаил Боровинских

    Good day, there was a bit of a problem when I working with ffmpeg. We need to find timecodes of scene change detection in the video. Use the following command :

    



    ffmpeg -i inputVideo.mp4 -f image2 -vf "select = gt (scene \ ,. 5)" -vsync vfr thumb% 04d.png

    



    It creates an image from scene change detection. I do not know how to add timecode to a text file. Thanks in advance for your help !)

    



    P.S. Sorry for my bad english)

    


  • timecode of scene change detection ffmpeg

    16 mars 2015, par Михаил Боровинских

    Good day, there was a bit of a problem when I working with ffmpeg. We need to find timecodes of scene change detection in the video. Use the following command :

    ffmpeg -i inputVideo.mp4 -f image2 -vf "select = gt (scene \ ,. 5)" -vsync vfr thumb% 04d.png

    It creates an image from scene change detection. I do not know how to add timecode to a text file. Thanks in advance for your help !)

    P.S. Sorry for my bad english)

  • AV playback synchronization using ffmpeg on WPF

    10 août 2017, par learner

    I have Video( H264-1080p-30fps) and Audio (Mu-law-8k) in separate files both are generated from same camera source. My work is to play them both synchronously using ffmpeg. I can able to decode video and audio without any issue but I don’t know how to play AV synchronously on WPF.

    1. What is the best way to render the video and play audio on Wpf after decoding ?
    2. How to play them synchronously ?

    Thanks in advance..