Recherche avancée

Médias (91)

Autres articles (77)

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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9414)

  • Insert video into another video both of different formats in a time efficient way

    7 février 2017, par Sharath Huddar

    I have an assignment which requires that the code I write takes a large video(1 to 3 hrs) and a smaller video (10-60 seconds) and the smaller video is inserted at intervals of 30 minutes into the larger video. Note that the videos are not necessarily in the same format.

    I tried to encode the large and the small video to a common format (mp4) and then split the large video based on time (while encoding it to mp4) and then concat all the videos in a predefined sequence (also while encoding to mp4). All these operations were carried out using FFMPEG.

    Although this method worked, it too close to 20 hours to perform the whole operation on an Intel NUC (having an i5 processor and 8GB RAM)

    Is there a faster way to do this without compromising on quality ?

  • Is there any way to use ffmpeg to download the video url and sync the video and audio without encoding ?

    20 juin 2023, par Daniel Lee

    I downloaded a video URL with audio, but the duration of the video and the duration of the audio are different and I want to match them.

    


    I want to use the shortest option, but I can only do that by extracting the audio separately and taking two inputs, audio and video.

    


    Is there an easy way ?

    


      

    1. used apad option
    2. 


    


  • How to replace the video track in a video file with a still image ?

    22 février 2021, par cornerstore

    I am trying to use ffmpeg to replace the video track in a video file with a still image. I tried some commands I got from other questions such as the one here

    


    ffmpeg -i x.png -i orig.mp4 final.mp4

    


    ffmpeg -r 1/5 -i x.png -r 30 -i orig.mp4 final.mp4

    


    But these didn't work. I'm not sure which of these arguments are required or not. The output should be accepted by YouTube as a valid video - I was able to simply remove the video track, but apparently they don't let you upload a video without a video track.