Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (6)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • Adding two audio clips and an image to a video file using ffmpeg

    4 avril 2016, par Hadi F.

    I’m trying to add two audio clips and a png image to my video clip in ffmpeg. I also want to increase the volume of the two audio files in the same code. Here is the code I wrote :

       ffmpeg -i videoclip.mp4 -i logo.png -i audio1.mp3 -i audio2.m4a -filter_complex "[0:v][1:v]overlay=${x}:${y}:enable='between(t,${logoStartTime},${logoEndTime})'; [2:0]volume=${vol}[s3];[s3]adelay=${audioDelay}[s1];[3:0]volume=${vol2}[s4];[s4]adelay=${audioDelay2}[s2];[0:a][s1][s2] amix=inputs=3:duration=longest " -c:v libx264 -shortest out.mp4

    Everything works fine in the output video, except when I play the output video, the audio1.mp3 plays once right at the start and once at the time I specify in ’adelay’. I really don’t have any idea how to fix this and it’s driving me crazy ! Can anyone help please ?

  • Concat video output does not skip ahead or go backwards like normal video

    6 août 2020, par JOHN DADS

    i ran this basic concat code to combine an image and audio to output an mp4 video but the output video plays perfectly except for the fact that if I want to skip ahead in the video it goes back to the original position. This was run on python

    


    audio = ffmpeg.input("beat.mp3")

picture = ffmpeg.input("image.jpg")

ffmpeg.concat(picture, audio, v=1, a=1).output("video3.mp4").run()


    


  • how to convert a video to H264 video codec format & webm and ogv with watermark via ffmpeg

    5 mars 2015, par ali

    I used this code :

    function convert()
    {
     exec("$ffmpegPath  -i $inputPath -i $watermark -filter_complex overlay=10:10 $outPath");
    }

    convert('test.mp4');
    convert('test.webm');
    convert('test.ogv');

    This code works...but not in browser !
    I can run output videos via KMPLAYER in desktop (ovg only video - no audio)

    I want to run it on web via videojs.

    mp4 playback with videojs in browsers - audio plays but video is blank.

    I googled and I think I must convert it to h264 format...

    Can somebody change my orginal code to 3 valid codes for h264,webm and ogv ?