Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (74)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7838)

  • FFmpeg : animate image size to match music loudness

    22 juillet 2019, par skitzo

    This is for a script to generate Instagram video content. I have a script that merges an audio clip, video clip, and a logo centered throughout the whole output video’s duration.

    Goal : make the logo change size to match the audio waveform. The logo should look like it’s reacting to the beat.

    How can I achieve this using FFmpeg ? I don’t know if FFmpeg has this capability. Perhaps I could

    1. Use another library to get a volume array of the audio clip

    2. Generate an array of image sizes for the logo based on that volume array

    3. Read that array with FFmpeg ?

    1 and 2 are definitely possible but I don’t know how to approach step 3.

    Here’s the current command in my script that merges audio, video, logo, and crops the video into a square.

    ffmpeg -i video_path -i logo_path -i audio_path -filter_complex "[0:v]scale=-2:720,crop=500:500[bg];[bg][1:v] overlay=(W-w)/2:(H-h)/2" -      pix_fmt yuv420p -map 0:v -map 2:a -shortest out_path
  • Mix voiceover and background music with delay and volume

    6 août 2019, par oldman

    I don’t master ffmpeg but I really need to mix a voiceover with a background song.

    The voiceover must start 5 seconds after the song, and must end 5 seconds before the song ends.

    The music volume must be loud for the first 5 seconds and the last 5 seconds, but during the voiceover it should remain low.

    Searching the internet, the closest I could come to my goal was this :

    ffmpeg -i music.mp3 -i voiceover.mp3 -filter_complex "[0]asplit[a][b]; [a]atrim=duration=5,volume='1-max(0.25*(t-13),0)':eval=frame[pre]; [b]atrim=start=5,asetpts=PTS-STARTPTS[song]; [song][1]amix=inputs=2:duration=shortest:dropout_transition=0[post]; [pre][post]concat=n=2:v=0:a=1[mixed]" -map " "[mixed]" output.mp3

    Could someone help me complete this script ?

  • 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