Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (65)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (8170)

  • Basic Video Player Using Qt And FFmpeg

    7 mars 2016, par Thibaud Auzou

    I am trying to program a little and basic video player using Qt and FFmpeg. I first recompiled Qt to use with Visual Studio 2015.

    Once done I created my MainWindow, the MenuBar, the PushButtons that I needed, etc.

    Now that I wrote the main structure of this little project I am struggling with integrating FFmpeg into it. I believe I am trying to use libavcodec to read a video. But to be honest I am not sure.

    I am quite lost at this point, several hours on Google and still lost.

    While the documentation of Qt was quite easy to handle, the documentation of FFmpeg is kinda vague...

    An of you has an advise regarding FFmpeg ? A good tutorial ?

  • Ducking music using FFmpeg

    24 février, par angel_30

    I want to duck a music audio with a speech audio using FFmpeg (ducking is commonly used to lower background music anytime a person speaks, then raises it when that person finishes speaking). How can I do it with FFmpeg or any other tools (if any) ?

    


    There was an FFmpeg filter called sidechaincompress which merges the two, but it doesn't "duck" them. It takes 2 audio inputs, 1st input to be compressed depending on the signal of 2nd input and later compressed signal to be merged with 2nd input :

    


    ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"


    


  • concat 2 mini audio files and make a loop and add a background music

    11 octobre 2020, par Johny Sharma

    I Need to concatenate 2 small audio files with loop and add background music in a single command.

    



    I am capable to concatenate two audio files with a background music. My above given code is working.

    



    ffmpeg -i 1.mp3 -i 2.mp3 -i background.mp3 
-filter_complex "[0:0][1:0]concat=n=2:v=0:a=1,volume=1dB,aformat=fltp, pan=stereo|c0=c0|c1=c0[a0]; 
[2]volume=0.5dB,aformat=fltp,pan=stereo|c0=c0|c1=c1[a1];[a0][a1]amix=inputs=2:duration=longest,aformat=fltp[a]"
-map "[a]" -strict -2 -y output.mp3


    



    but i want to a make a loop of the concatenated files till the end of the background music. background music is longer than approx 5 times from concatenated files.

    



    If someone can suggest a single command solution.

    



    I know about amovie tag but unfortunately its not possible to use in here because amovie requires file name which is not possible with concatenated files as per my knowledge.

    



    Can anyone help me how can i achieve my goal !

    



    Thanks