Recherche avancée

Médias (91)

Autres articles (53)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6405)

  • How to embed SCC closed caption file into a video file mov/mp4/mpg

    5 août 2015, par Santhosh S

    I am trying to embed a closed caption (SCC) file into a video file and hitting on some problems.

    Please suggest how to embed SCC closed caption file into a video file mov/mp4/mpg

    Does FFMPEG support closed captions - scc files as input ?

    Which open source tools can I use to do the above task ?

    Thanks

  • GIF file running only once in MP4 output file using FFMPEG

    5 février 2023, par asdasd asdasd

    I have a gif file with accompanying mp3 music.

    


    My goal is to run the gif file with the mp3 music file and out-put it as an MP4 file. This works, HOWEVER

    


    Once the file is outputted, I have some issues

    


    Firstly, the gif runs only once and freezes after that, the music runs until the file ends.

    


    Here is the fmpegg command I am using

    


     subprocess.run(
        ["ffmpeg", "-i", gif_file, "-i", chosen_mp3, "-pix_fmt", "yuv420p", "-t", "10", "-loop", "0", output_file],
        check=True,shell=True
    )


    


    How can I make it so that the gif does not freeze up after running once, i.e loops until end of file or loops for an N amount of times ?

    


    In the code above, I tried to make it loop for 10 seconds but still the same issue is happening.

    


  • Combining an audio file with video file in python

    9 mai 2024, par Fahadkalis

    I am writing a program in Python on RaspberryPi(Raspbian), to combine / merge an audio file with video file.

    


    Format of Audio file is WAVE
Format of Video file is h264

    


    Audio and video already recorded and created at same time successfully, I just need to merge them now.

    


    Can you please guide me on how do I do that ?