Recherche avancée

Médias (0)

Mot : - Tags -/logo

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (102)

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

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

Sur d’autres sites (10185)

  • lavf/Makefile : Specify sln demuxer requirements.

    17 novembre 2019, par Carl Eugen Hoyos
    lavf/Makefile : Specify sln demuxer requirements.
    

    Mentioned in ticket #8378.

    • [DH] libavformat/Makefile
  • Add missing requirements to libavdevice.pc if lavfi is enabled.

    11 mars 2012, par Carl Eugen Hoyos

    Add missing requirements to libavdevice.pc if lavfi is enabled.

  • FFMPEG add two mp3s to video, with additional requirements

    1er juillet 2022, par Vince

    I have a sort of unique use case that I need an ffmpeg command for. I have a video, and I need to add two mp3s to it. There are some additional requirements for these files :

    


      

    • First mp3 : a music file

        

      • loop for the length of the video
      • 


      • fade out for 2 seconds at the end
      • 


      • set volume to 30%
      • 


      


    • 


    • Second mp3 : a voiceover file

        

      • do NOT loop
      • 


      • do NOT fade out
      • 


      • volume should be 100%
      • 


      


    • 


    


    I have a command that accomplishes everything I need with the first mp3. I'm hoping I can modify this command to accomplish what I need in a single step. But if multiple steps are necessary, that is also ok. Here's the command I'm currently using :

    


    ffmpeg -y -i video.mp4 -stream_loop -1 -i musicFile.mp3 \
  -af apad,afade=type=out:start_time=118:duration=2 \
  -map 0:v -map 1:a -c:v copy -shortest video_final.mp4