Recherche avancée

Médias (91)

Autres articles (46)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (4564)

  • avcodec/binkaudio : Remove AV_CODEC_CAP_DELAY

    11 octobre 2021, par Andreas Rheinhardt
    avcodec/binkaudio : Remove AV_CODEC_CAP_DELAY
    

    This decoder may output multiple AVFrames for every AVPacket
    passed to it, but after it has returned AVERROR(EAGAIN),
    it is completely drained and there is no reason to flush it
    at the end with a NULL packet. Furthermore, there is also no
    delay in the common sense of the word.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/binkaudio.c
  • C# FFMPEG : Code bugs out and stops producing media files

    24 mai 2020, par Hamez

    I've made a joke program in C# that uses ffmpeg to edit videos with different effects such as stuttering. I've finished 3 effects so far and each of them work on their own but as soon as I put one after another e.g.  fx.CrashStutter(0, 2); fx.CrashBeep(2, 2); fx.Wow(4, 2);&#xA;The code breaks and no longer produces photo/video files but once I stop debugging the file it was supposed to be processing appears. I've used a system where it loops over trying to execute a command to create a text file as a marker for when ffmpeg is done processing a file. The debug console also repeatedly says "The process tried to write to a nonexistent pipe."

    &#xA;&#xA;

    Here's the code for all 3 effects :

    &#xA;&#xA;

     public void Wow(double start, double duration)&#xA;        {&#xA;            if (fxstart == true)&#xA;            {&#xA;                //MessageBox.Show("WowFX Duration" &#x2B; duration);&#xA;                string folderName = ("W_s" &#x2B; start);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("mkdir " &#x2B; folderName);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("cd " &#x2B; folderName);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -ss " &#x2B; start &#x2B; " -t " &#x2B; (duration / 6) &#x2B; " -i " &#x2B; source &#x2B; " a.mp4");&#xA;                //wait until a.mp4 appears&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\a.txt") == false)&#xA;                {&#xA;                    /*aha got a live one!*/FXcmd.StandardInput.WriteLine(" echo a > a.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -i a.mp4 -vf reverse -af areverse b.mp4");&#xA;                //wait until b.mp4 appears&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\b.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo b > b.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -ss " &#x2B; start &#x2B; " -t " &#x2B; (duration / 3) &#x2B; " -i " &#x2B; source &#x2B; " c.mp4");&#xA;                //wait until c.mp4 appears&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\c.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo c > c.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -i c.mp4 -vf reverse -af areverse d.mp4");&#xA;                //wait until d.mp4 appears&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\d.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo d > d.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                string[] concatList = { "file &#x27;a.mp4&#x27;", "file &#x27;b.mp4&#x27;", "file &#x27;c.mp4&#x27;", "file &#x27;d.mp4&#x27;" };&#xA;                //FXcmd.StandardInput.Write("del a.txt, b.txt, c.txt, d.txt");&#xA;                //System.Threading.Thread.Sleep(1000);&#xA;                System.IO.File.WriteAllLines(("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\concatList.txt"), concatList);&#xA;                System.Threading.Thread.Sleep(1500);&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -f concat -i concatList.txt -c copy " &#x2B; folderName &#x2B; ".mp4");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\" &#x2B; "1.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo 1 > 1.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("copy " &#x2B; folderName &#x2B; ".mp4 ..");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; ".mp4") == false)&#xA;                {&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("cd ..");&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("cls");&#xA;                FXcmd.StandardInput.Flush();&#xA;            }&#xA;        }&#xA;        public void CrashStutter(int start, int duration)&#xA;        {&#xA;            if (fxstart == true)&#xA;            {&#xA;                string folderName = ("Cs_s" &#x2B; start);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("mkdir " &#x2B; folderName);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("cd " &#x2B; folderName);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -ss " &#x2B; start &#x2B; " -t 0.1" &#x2B; " -i " &#x2B; source &#x2B; " a.mp4");&#xA;                System.Threading.Thread.Sleep(100);&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\a.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo a > a.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -stream_loop "&#x2B;10*duration&#x2B;" -i a.mp4 "&#x2B;folderName&#x2B;".mp4");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\" &#x2B; "1.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo 1 > 1.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("copy " &#x2B; folderName &#x2B; ".mp4 ..");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; ".mp4") == false)&#xA;                {&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("cd ..");&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("cls");&#xA;                FXcmd.StandardInput.Flush();&#xA;            }&#xA;        }&#xA;        public void CrashBeep(int start, int duration)&#xA;        {&#xA;            //this effect cannot last longer than 7 seconds&#xA;            double contrast = 25;&#xA;            double red = 0.75;&#xA;            if (fxstart == true)&#xA;            {&#xA;                string folderName = ("Cb_s" &#x2B; start);&#xA;                FXcmd.StandardInput.WriteLine("mkdir " &#x2B; folderName);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("cd " &#x2B; folderName);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                /*gets stuck*/FXcmd.StandardInput.WriteLine("ffmpeg -i "&#x2B;source&#x2B; " -vf fps=1 a.jpg");&#xA;                System.Threading.Thread.Sleep(100);&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\a.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo a > a.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -i a.jpg -vf eq=contrast="&#x2B;contrast&#x2B;" b.jpg");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\b.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo b > b.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -i b.jpg -vf colorbalance=rm=" &#x2B; red &#x2B; " c.jpg");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\c.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo > c.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -loop 1 -i c.jpg -c:v libx264 -t "&#x2B; duration &#x2B;" -pix_fmt yuv420p -vf scale=1920:1080 d.mp4");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\d.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo d > d.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("cd ..");&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("copy beep.mp3 "&#x2B;folderName&#x2B;"/beep.mp3");&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("cd "&#x2B;folderName);&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -i beep.mp3 -ss 0 -t " &#x2B; duration &#x2B; " e.mp3");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\e.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo e > e.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("ffmpeg -i d.mp4 -i e.mp3 -c copy -map 0:v:0 -map 1:a:0 " &#x2B; folderName &#x2B; ".mp4");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; "\\" &#x2B; "1.txt") == false)&#xA;                {&#xA;                    FXcmd.StandardInput.WriteLine(" echo 1 > 1.txt");&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("copy " &#x2B; folderName &#x2B; ".mp4 ..");&#xA;                while (File.Exists("FxSource(Temporary)\\" &#x2B; folderName &#x2B; ".mp4") == false)&#xA;                {&#xA;                    System.Threading.Thread.Sleep(1500);&#xA;                }&#xA;                FXcmd.StandardInput.WriteLine("cd ..");&#xA;                System.Threading.Thread.Sleep(100);&#xA;                FXcmd.StandardInput.WriteLine("cls");&#xA;                FXcmd.StandardInput.Flush();&#xA;            }&#xA;        }&#xA;

    &#xA;&#xA;

    Any suggestions ? Thanks !

    &#xA;

  • ffmpeg c++ seek performance

    30 juillet 2020, par thdemo

    I'm using ffmpeg for video playback, which works fine in itself, for many videos at once using HAP codec.

    &#xA;

    The problem is when trying to play at faster speeds or reverse. The HAP codec only has full frames, so that should not be the problem. But apparently doing av_seek_frame and avcodec_flush_buffers is a big bottleneck. Not when playing a few videos, but I also want to be able to do it for 25 HD videos at once. Playing at normal speeds works fine for that many videos, but at higher speeds, the framerate becomes unusable.

    &#xA;

    Is there a different way to handle playback speed and forward/backward direction anyone knows of that allows me to do this kind of playback at the same performance as normal playback ? A way to tell ffmpeg the playback speed and direction so that you don't need to seek and flush ?

    &#xA;