Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (67)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (9041)

  • avcodec/amfenc : Implement async_depth option

    7 novembre 2024, par Cameron Gutman
    avcodec/amfenc : Implement async_depth option
    

    This option, which is also available on other FFmpeg hardware encoders,
    allows the user to trade throughput for reduced output latency. This is
    useful for ultra low latency applications like game streaming.

    Signed-off-by : Cameron Gutman <aicommander@gmail.com>

    • [DH] libavcodec/amfenc.c
    • [DH] libavcodec/amfenc_av1.c
    • [DH] libavcodec/amfenc_h264.c
    • [DH] libavcodec/amfenc_hevc.c
  • C# process and ffmpeg output pipe

    21 novembre 2018, par Konrad

    I’m trying to replicate the following call from command line in C# :

    C:\Temp\Proj\FFmpeg\bin\ffmpeg.exe -re -i C:\test\test.ts -map data-re -codec copy -f data - | java -jar C:\Temp\Proj\FFmpeg\bin\AnotherProj.jar 1

    As you can see, FFmpeg pipes the data into an app built with Java. And my implementation :

    var x = RunCmdProcess($"/C {_ffmpegPath} -re -i {_videoPath} - map data-re -codec copy -f data - | java -jar {_anotherProjPath} 1", out outputMessage);

    protected Process RunCmdProcess(string arguments, out string outputMessage)
               {
                   ProcessStartInfo p = new ProcessStartInfo("cmd.exe");
                   p.RedirectStandardOutput = true;
                   p.RedirectStandardError = true;
                   p.RedirectStandardInput = true;
                   p.UseShellExecute = false;
                   p.CreateNoWindow = true;
                   p.WindowStyle = ProcessWindowStyle.Hidden;
                   p.Arguments = arguments;

                   var sb = new StringBuilder();

                   var x = Process.Start(p);

                   var stdOut = x.StandardOutput.ReadToEnd();
                   var stdErr = x.StandardError.ReadToEnd();

                   sb.Append(stdOut);
                   if (!string.IsNullOrEmpty(stdErr)) sb.Append(stdErr);
                   x.WaitForExit();
                   outputMessage = sb.ToString();
                   return x;
               }

    The result of the following call is :

    [NULL @ 0000028335e82380] Unable to find a suitable output format for ’pipe :’
    pipe: : Invalid argument

    I double checked the paths to the files given in the RunCmdProcess function as well as tried enclosing the arguments (after /C) with quotation marks. No matter what I try, I still get the same error from FFmpeg.

  • matroskaenc : Allow chapters to be written in trailer

    3 septembre 2013, par John Stebbins
    matroskaenc : Allow chapters to be written in trailer
    

    This allows creation of frame accurate chapter marks from sources like
    DVD and BD where the precise chapter location is not known until the
    chapter mark has been reached during reading.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/avformat.h
    • [DBH] libavformat/matroskaenc.c