Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (112)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9256)

  • avformat/pp_bnk : treat music files as stereo

    13 novembre 2020, par Zane van Iperen
    avformat/pp_bnk : treat music files as stereo
    

    These files are technically a series of planar mono tracks.
    If the "music" flag is set, merge the packets from the two
    mono tracks, essentially replicating :

    [0:a:0][0:a:1]join=inputs=2:channel_layout=stereo[a]

    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>

    • [DH] libavformat/pp_bnk.c
  • add background music to existing avi

    31 décembre 2013, par Johnny

    I have a video.avi which I have generated with mencoder before. It has a video and audio stream and I'm trying add (mix) a background.mp3 file to it, but I haven't found anything on the internet, thats why I'm asking. The background music is always longer than the audio in video.avi so I have to use something like "shortest" like I know from ffmpeg.

    If I do this :

    mencoder -ovc copy -audiofile background.mp3 -oac copy video.avi -o output.avi

    the existing audio stream from video.avi is overwritten (or not used). Is it even possible to do this with mencoder ? If anyone could tell me how to do this with ffmpeg or avconv (any linux command line tool) I would appreciate it.

  • how to fade in and out background music when speech play and fade out audio at the end and mix them together using ffmpeg

    3 avril 2019, par Harshil Dholakiya

    I am using below command in my project to mix background music with my speech audio and background music slow down volume level when speech play :

    ffmpeg -y -i speech.mp3 -stream_loop -1 -i music.mp3 -filter_complex "[0:a]asplit=2[sc][mix];[1:a][sc]sidechaincompress=threshold=0.01:ratio=5[bg];[mix][bg]amix=inputs=2:duration=first:dropout_transition=0[final]" -map [final] finalAudio.mp3

    i want to add this two filter to audio :

    1) Fade-in effect to background music for 1.5 sec when speech arrive and fade-out effect when speech is finish for 1.5 sec. speech.mp3 has more than one speech and silence in between speech.

    2) Fade out effect at the end of audio for 1.5 sec.

    can anyone help me to achieve both of above filter using ffmpeg with my above command ?