Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (100)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6312)

  • Concat three videos with one audio

    27 septembre 2018, par Михаил Безуглый

    Thank you for coming here. I have three video clips (the first is 3 seconds, the second is 20 seconds, the third is 2 seconds), I connect them using the following command :

    ffmpeg -i opening.mp4 -i middle.mp4 -i ending.mp4 -filter_complex "[0:v] [1:v] [2:v] concat=n=3:v=1 [v]" -map "[v]" output.mp4

    Since all three videos do not have audio tracks, I do not need to include [a]. And then the day came when I needed it. I have an audio track, duration of 35 seconds(which is much larger than the output.mp4 video) and I need this audio to be connected to the whole video. 1) Do I need to crop the audio to the length that is obtained by merging all three videos ? 2) Is it possible to do this with one command, or i need first have to concatetate all together with my command, and then merge video and audio track ?

  • Transcode videos with queue

    14 août 2013, par Ron

    I want to transcode videos that are uploaded to a directory in a server with a queue.
    How can I order the server to encode a video using FFmpeg with Python ? And how a queue system can be added above that ?

  • Interlace two videos by alternating frames

    31 mars 2017, par GIRISH RAMNANI

    I am trying to interlace two videos by alternating frames. i.e. show a frame of the first video for 0.03s and then of the second for 0.03s. finally storing this into a file. I searched online and found that ffmpeg filters can be used to do this. But i am open to any other methods as well.