Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (75)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (13654)

  • 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