Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (59)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (5543)

  • adding background music to video using ffmpeg

    3 avril 2021, par Captain_Zaraki

    I am trying to add bacground music to a video using ffmpeg and it is working fine but I want if length of video is more than the music file then music should start playing again till the video is over -

    


    ffmpeg -i 1.mp4 -i 2.mp3 -map 0:v:0 -map 1:a:0 output.mp4


    


    is there anyway to perform this action ?

    


  • ffpmeg loop background music in audio file and add fadeout

    21 juin 2021, par Javed Saifi

    I have 2 files one is voice.mp3 and the second is background.mp3 currently I'm adding background music in voice.mp3 below is the command.

    


    ffmpeg -i voice.mp3 -i background.mp3 -filter_complex "[0]volume=1.0[a],[1]volume=0.5[b];[a][b]amix=duration=shortest" -ac 2 -c:a libmp3lame -q:a 4 output.mp3 -y


    


    What I want to achieve is.

    


      

    1. loop background.mp3 if it is shorter than voice.mp3 duration
    2. 


    3. if background.mp3 duration is greater than voice.mp3 then use duration shortest.
    4. 


    5. fadeout background
    6. 


    


  • My ffmpeg commands result in very compressed video when blending with music. TYIA

    30 juin 2021, par DCnative

    I have a flutter app that combines music with video. Below is the command I am using, but the resulting video has a very blurry/compressed look. Any help would be greatly appreciated !

    


    -i $pathOfVideo -i $_localMusic -y -map 0:v -map 1:a -shortest $f$Platform.pathSeparatorout.mp4

    


    I have tried adding "-crf 20 -preset veryfast" but it did not work