Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (67)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (6401)

  • (FFMPEG) Merge MP3 music with metadata and lossless WAV music without metadata into FLAC music with metadata ?

    24 décembre 2022, par user335844

    Is it possible to merge MP3 music with metadata and lossless WAV music without metadata into FLAC music with metadata ? Thanks.

    


  • 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 - padding/margins/offset in amix filter. Overlay conversation to music

    10 juin 2022, par user19313832

    Use filter_complex and amix to overlay conversation with music.

    


    There is a video file with music, and an audio file with a conversation.
When they start talking, the volume of the music fades. When the conversation ends, the volume of the music increases again. It works.

    


    But there is a problem that the volume of the music decreases only after they started talking. It is required that the volume of the music decrease even before they start talking, with an indent that can be specified. That is, when they have not said anything yet, the volume of the music decreases, for example, in a second when they start talking. Is there a solution ?