Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (63)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4893)

  • How do websites render custom videos programatically ?

    18 juillet 2020, par Eric Smith

    I've noticed a number of websites such as https://biteable.com, https://animoto.com/apps/online-video-maker, etc. that are essentially online video editors that allow users to apply effects, add custom text, etc. and render a video as a result.

    


    I've done a bit of research but can't find any high-level answers on how these websites accomplish creating videos programmatically. I've seen mention of "FFmpeg", but this seems like it would only be able to accomplish basic tasks such as converting a series of images into a video (am I wrong ?).

    


    I know very little about video rendering and was hoping someone had an idea to get me started in my research. Are there libraries that exist that can aid to accomplish what these websites are doing ? Or are these websites starting from the ground up with lower-level languages to accomplish this ?

    


  • ffmpeg rotate 2 videos and create split

    1er juillet 2023, par Евгений Федоров

    I have 2 videos and i need to rotate them and create split video of both

    


    Video 1

    


    enter image description here

    


    Video 2

    


    enter image description here

    


    Both videos are same resolution and FPS.
In the and I want to get this (first video rotated on 90 and second on 270 degrees)

    


    enter image description here

    


    How to correctly specify arguments in filter complex for ffmpeg ?

    


    Right now I use the following arguments, but I'm not sure how to specify rotation angle correctly

    


    var outputFile = Path.Combine(folder,  "result.mp4");
            var leftSideFile = @"left.mp4";
            var rightSideFile = @"right.mp4";

            var inputArgs = string.Format("-i \"{1}\" -i \"{2}\" -filter_complex  [0:v]pad=iw*2:ih[int];[0]rotate=PI/2;[int][1:v]overlay=W/2:0[vid] -map [vid] -c:v libx264 -crf 0 -preset veryfast \"{0}\"", outputFile, leftSideFile, rightSideFile);

            var mergeVideos = new Process
            {
                StartInfo =
                            {
                            FileName = ffmpegPath,
                            Arguments = $"{inputArgs}",
                            UseShellExecute = false,
                            CreateNoWindow = false,
                            RedirectStandardInput = true
                            }
            };
            mergeVideos.Start();
            mergeVideos.WaitForExit();


    


    How do I need specify the rotation degree arguments for the first and second video and get the desired result ?

    


  • Révision 24662 : réparer le super_cron en https

    23 août 2020, par bruno@eliaz.fr

    super_cron, il est super, mais un peu cron cron en https :p

    report de 542730b44f71bc6395aa43e80f8b0a12a22215db & fix #4345