Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (50)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (4881)

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

    


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

    


  • 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