Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (40)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • De près ou de loin...

    29 avril 2011, par

    Ils ne le savent pas forcément mais sont indispensables
    MediaSPIP est un logiciel open-source, il se base sur d’autres logiciels, et d’autres logiciels lui sont également nécessaires pour fonctionner ... Les personnes ici listées ne savent pas forcément qu’elles ont un rôle important dans le développement, elles ont apporté leur connaissances dans le cadre de la création d’une partie de ces éléments nécessaires ou ont écrit des articles permettant de comprendre certaines choses... il semble indispensable (...)

Sur d’autres sites (6458)

  • How to stop ffmpeg automatically rotating (Iphone 13) videos

    22 juillet 2022, par VdGR

    I have a bunch of videos I want to merge into one video.
Therefore I used this ffmpeg command.

    


    ffmpeg -y -loglevel warning -f concat -safe 0  -i "filelist.txt" -c copy "merged.mov"


    


    When I open merged.mov all my videos are rotated -90 degerees but when I open my videos for example in vlc it has the right rotation.
What am I doing wrong ?

    


    I tried already adding the "-noautorotate" option but that does not seem to solve the problem.

    


  • FFMPEG : Create contiguous videos from webcam

    19 octobre 2015, par Kr0e

    Can FFMPEG record from webcam in (for instance 10 sec.) intervals ?
    I need contiguous small videos from webcam (used for a p2p live streaming app, which I’m developing), so that I can play them one after the after without noticing, that there are actually multiple videos.

    I guess, I have to break on key-frames or something like this, so that I have clear cuts.

    For playing multiple videos without stuttering I use the Web MediaSource API and it does actually work quite well already.

    I only need to segment a webcam stream into multiple variable video files.

    Thanks !

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