Recherche avancée

Médias (91)

Autres articles (77)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5384)

  • C# Medallion.Shell Filter output in console

    14 mai 2023, par FedeC87p

    I try to filter the output in console with the Medallion.Shell

    


                    var command = Command.Run(
                    ffMpegBinaryPath,
                    args);
                command.RedirectTo(Console.OpenStandardOutput());
                command.RedirectFrom(Console.OpenStandardInput());
                command.RedirectStandardErrorTo(Console.OpenStandardError());


    


    In this way i can't filter the output...

    


    before I used the ProcessInfo directly, is there a way to get the same result with that library Medallion ?

    


                    using var FFmpegProcess = Process.Start(procStartInfo) ?? throw new InvalidOperationException("null process");
                FFmpegProcess.ErrorDataReceived += delegate (object sender, DataReceivedEventArgs received)
                {
                    if (received?.Data is not null &&
                        received.Data.StartsWith("frame=", StringComparison.InvariantCulture))
                    {
                        Console.WriteLine(received.Data);
                        Console.SetCursorPosition(0, Console.CursorTop - 1);
                    }
                };


    


  • FFMPEG MP4 from a m3u8 stream results in a few black frames

    14 avril 2020, par roosevelt

    I'm noticing an odd behavior and not sure how to tackle it through FFMPEG. Basically, I'm downloading some ts files from a stream and making an MP4 out of them. I don't need to encode them since they are already encoded.

    



    Here's the command :

    



    ffmpeg -nostdin -y -ss 3 -i https://d2nvs31859zcd8.cloudfront.net/d33af82762361135e8ba_yassuo_37349116016_1403122741/chunked/index-muted-EIVFBWYS1V.m3u8 -t 50 -c copy Test.mp4


    



    If I run the MP4 file in Quicktime player, it seems like there are one or two black frames in the beginning. How do I get rid of that using the above command ?

    



    I also tried downloading the .ts files and concat them via FFMPEG. But the result is the same. First few frames are black.

    



    ffmpeg -nostdin -y -i "concat:0.ts|1.ts|2.ts|3.ts|4.ts|5.ts|6.ts" -c copy Test2.mp4


    



    Seems like VLC doesn't show the black frame but it's apparent on the Quicktime player.

    



    Thanks

    


  • ffmpeg - how to add text on black background at end of video for 10 sec ?

    3 octobre 2015, par jamie

    I have some mp4 files I’d like to add some white text reading something like

    "StackOver Flow Rules see more at www.stack.com/324324 bla bla and some more words here !"

    To the end of the videos on a black background that last 10 seconds.

    How would I achieve this with FFMPEG ?