Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (77)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7389)

  • Why is adding background music to video using `ffmpeg -i input.mp4 -i music.mp3 output.mp4` not working ?

    16 novembre 2022, par mayank1513

    I explored google and StackOverflow for how to add background music to the video and many of them suggested to use

    


    ffmpeg -i input.mp4 -i audio.mp3 -shortest output.mp4


    


    I have been trying to achieve this but it just does not work. When I try to add map like

    


    ffmpeg -i "input.mp4" -i bg.mp3 -map 0:v:0 -map 1:a:0 oo.mp4


    


    The video sound is replaced by the bg.mp3

    


    And if I try -map 0 -map 1:a:0 or not provide map, the audio is not added at all.

    


    How do I add the background music ? I don't also get any error.

    


  • FFMpeg Add Background Music to Video

    10 juillet 2021, par Hossein

    I wanna add a background music on my video.
I tried this command

    


    ffmpeg -i video.mkv -i audio.m4a -filter_complex "[0:a][1:a]amerge=inputs=2[a]" -map 0:v -map "[a]" -c:v copy -ac 2 output.mkv


    


    It worked but when music ended, My Video Sound end too.
I want to repeate the background music until video end.
And if I can change background music volume it will be awosome

    


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