Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (39)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • Video Comparison Using Java - Video similarity [on hold]

    23 novembre 2013, par Emily Webb

    Is there approach to compare 2 videos and check are they different versions of the same video...

    Here by different version I meant that we can create two same videos with different resolutions or one of the video can be a large video and the other one can be a portion of it.But we should recognize both videos as same video in this scenario.

    Is there any java libraries to attain this ? Or is there any approaches to achieve this ?

  • Add Masking Video between 2 Video with FFMPEG [closed]

    26 décembre 2019, par Mansi Joshi

    currently working on FFMPEG. i have to Merge Video with Masking Video.Masking Video is nothing but Transition effect with black & White. i have to put this Masking video between 2 videos.
    Like end of first video & starting of another video using FFMPEG android

    anyone idea about how to achieve it.

  • Why when creating a video file from images using ffmpeg when playing the video file the quality is bad and the video is running too fast ?

    27 avril 2016, par Daniel Voit
    public void Start(string pathFileName, int BitmapRate)
           {
               try
               {

                   string outPath = pathFileName;
                   p = new NamedPipeServerStream(pipename, PipeDirection.Out, 1, PipeTransmissionMode.Byte);
                   ProcessStartInfo psi = new ProcessStartInfo();
                   psi.WindowStyle = ProcessWindowStyle.Hidden;
                   psi.UseShellExecute = false;
                   psi.CreateNoWindow = false;
                   psi.FileName = ffmpegFileName;
                   psi.WorkingDirectory = workingDirectory;
                   psi.Arguments = @"-f rawvideo -pix_fmt bgra -video_size 1920x1080 -i \\.\pipe\mytestpipe -c:v libx264 -crf 20 -r " + BitmapRate + " " + outPath;
                       //@"-f rawvideo -pix_fmt bgra -video_size 1920x1080 -i \\.\pipe\mytestpipe -c:v mpeg2video -crf 20 -r " + BitmapRate + " " + outPath;

                   process = Process.Start(psi);
                   process.EnableRaisingEvents = false;
                   psi.RedirectStandardError = true;
                   p.WaitForConnection();
               }
               catch (Exception err)
               {
                   Logger.Write("Exception Error: " + err.ToString());
               }
           }

    I tried to use either the first or second line.
    BitmapRate is set to 25
    I tried to change both 20 to 10 and also the BitmapRate to 10 or to 17. but the video on hard disk when playing it it’s only 3-4 seconds bad quality.
    I see all the images but too fast it’s like running I forward mode.

    Each file size is 8MB on hard disk.
    55 Bitmap files.
    The video file is 1072 KB

    Tried to google but I didn’t find any googd example to fix it.
    It’s not that it’s not creating the video file it does but with bad quality and running too fast.

    It’s strange why the created video file is so small if every file is 8MB and why so bad quality.

    The video

    video