Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (14)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (3149)

  • Shazaam-esque music comparison [closed]

    17 janvier 2021, par Matthew Trip

    I have two files, a Full.mp4 and a Cut.mp4 I do not care about the video. I want to check if Cut appears in Full at any point. I have tried comparing the streams and their byte arrays but Rider keeps showing memory issues without an explanation. What is the general approach I should take ?

    


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