Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (88)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (10943)

  • How to compare/show the difference between 2 videos in ffmpeg ?

    25 janvier 2016, par polarka

    I am a newbie at encoding. I have read and tried x264 in lossless mode (-qp 0), however I’d like to make sure that in my new video, every single pixel contains the same information as the source file (which is in YUV 420 so the loss of color conversion is avoidable, as far as I know). I want to be able to check that, because I don’t believe in that if someone just says its lossless.

    I welcome answers suggesting other codecs for lossless encoding, my only requirements for codecs are having one of the best compression rate and let me to pick different calculation times (such as the range from placebo to veryfast in x264) in order to adjust the compression level and calc time to my needs. But keep in mind that the original question is about how can I calculate the differences frame by frame of two videos and export it to a 3rd file, so I can watch it myself. I think that knowledge (if its possible and doesnt have serious limitations) will be useful for me in the future too.

  • avformat/segafilmenc : Remove redundant checks

    14 janvier 2020, par Andreas Rheinhardt
    avformat/segafilmenc : Remove redundant checks
    

    If an audio stream is present, the Sega FILM muxer checks for its
    compability with the container during init, so that the very same check
    needn't be repeated during writing the trailer.

    Essentially the same is true for the presence of a video stream : It has
    already been checked during init. Furthermore, after the check for the
    presence of a video stream succeeded, a pointer is set to point to the
    video stream. Yet said pointer (which was NULL before) will be
    derefenced anyway regardless of the result of the check. Coverity thus
    complained about this in CID 1434155 and removing this pointless check
    will also fix this issue.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/segafilmenc.c
  • create thumbnail from video URL in C#

    23 mai 2016, par Hashem Aboonajmi

    I want to generate thumbnail from a video URL in C#. I have searched a lot to find a neat way but no success. I have used Nreco and MediaToolKit but none of them extract thumbnail image. using ffmpeg also has mumbo jumbos which didn’t worked !

    using NReco :

    var ffMpeg = new NReco.VideoConverter.FFMpegConverter();
    string thumbnailJPEGpath = "http://localhost:81882/content/hashem.jpeg";
    ffMpeg.GetVideoThumbnail(videoUrl,thumbnailJPEGpath);

    using ffmpeg :

    try
           {
               System.Diagnostics.Process ffmpeg;

               string video;
               string thumb;

               video = Server.MapPath("~/Content/Movies/bye.mp4");
               thumb = Server.MapPath("~/Content/frame.jpg");

               ffmpeg = new System.Diagnostics.Process();

               ffmpeg.StartInfo.Arguments = " -i " + video + " -ss 00:00:07 -vframes 1 -f image2 -vcodec mjpeg " + thumb;
               ffmpeg.StartInfo.FileName = Server.MapPath("~/Content/ffmpeg.exe");
               ffmpeg.Start();
               ffmpeg.WaitForExit();
               ffmpeg.Close();
           }
           catch (Exception ex)
           {
               Response.Write("Error: " + ex.Message);
           }

    to consider video files are not local and I have only a direct link to the file :
    e.g. :http://phytonord.com/Film-Series/hana/26.mp4

    does anyone has any solution ? any sample code that works ?