Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (57)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (6427)

  • Find Percentage of differences between two Videos Using FFMPEG

    5 novembre 2015, par Jai

    I am working with Video comparison using ffmpeg on java. I would like to know there is any option available for Find the Percentage of differences between two Videos Using ffmpeg.

  • FFMPEG - C# - Audio and Video out of sync on certain videos after concatenation

    10 décembre 2016, par iamanoob

    Hey guys I’ve been trying to make this work for a while now and I can’t seem to find how to make the audio/video synced after the concatenation, I’ve searched and tested some solutions but couldn’t get it working.

    Here is what I do right now, Everything is working but I must be doing something wrong.

    So First, I split the videos into the video that I want

    System.Diagnostics.Process.Start(ffmpegPath, "-i " +
    video.Path + " -ss " + StartTime + " -t " + Duration + " " + video.Output);

    After "cutting/splitting" the videos that I want like I want, I tried concatenating the videos together ( using -safe 0 to use the absolute path, else it wasn’t working ) :

    System.Diagnostics.Process.Start(ffmpegPath,
    "-f concat -safe 0 -i " + txtFile + " C:\\Downloads\\Build\\" + rdn.Next(0,1000) + ".mp4");

    After that , I’ve noticed the audio/video was sometime out of sync so I searched and found this

    so I decided to Pad all the videos after splitting them :

    System.Diagnostics.Process.Start(ffmpegPath,
    "-i " + video.Output + " -af apad -c:v libx264 -shortest -avoid_negative_ts make_zero -fflags +genpts -report " + padding);

    and then building it again, but it ended up having the same audio desync.

    It’s my first time working with mp4s and with FFMPEG and I’m sure I’m missing something.

  • Script that will use ffmpeg to add AAC 2.0 audio streams to videos

    9 juillet 2018, par jsr

    I need to cast some videos to my Chromecast that only allows AAC audio. I have some video files and I am continuously adding more. They all have AC3 audio. The ideal would be to have a script that uses ffmpeg/ffprobe to add (not replace) an AAC stream converting the AC3 stream. The script should be looking in a path (and all the subfolders) every night for movies without AAC 2.0 streams.

    The container should me mkv. Can anyone help me getting started ? I’m not very into python yet so I don’t know where to start, but I do understand the coding. Help is much appreciated !