Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (26)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (4317)

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

    


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