Recherche avancée

Médias (0)

Mot : - Tags -/latitude

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8526)

  • lavf/img2dec : Increase score for very large jpeg images.

    24 décembre 2020, par Carl Eugen Hoyos
    lavf/img2dec : Increase score for very large jpeg images.
    

    Avoids a conflict with the raw mjpeg demuxer.

    • [DH] libavformat/img2dec.c
  • Extract frames from a large video c#

    21 janvier 2014, par las

    I am developing a video editing software.
    For that I need to first load a video for editing.
    After loading the video I need to create a timeline of the video with its Thumbnail images which should take in every one seconds.

    I have tried many options for that but still have an issue with more 10 - 15 mins videos.

    First I used ffmpeg.
    There I tired two options.They ended up with following results
    - One is very slow
    - Another one is fast but thumbnails are not accurate

    Next I used Aforge.Net
    - There I can save images to disk but cannot access after 2000-3000 thumbnails
    (It gives out of memory exception)

    Please if you have good suggestion let me know for this task.
    Any one like to see my tried code samples let me know , I will add it to this question.

    Following is the method for reading images which are in the Disk

     void AddThumbnailImages(int i)
     {

        PictureBox pictureBox = new PictureBox();
        pictureBox.Size = new System.Drawing.Size(100, 75);

         pictureBox.Image = (Bitmap)new Bitmap("Snaps\\" + i + ".jpeg").Clone();

           if (i == totalFrames)
         { pictureBox.Tag = totalTimeForFrames; }
         else { pictureBox.Tag = (i / frameRate); }
         pictureBox.MouseClick += new MouseEventHandler(ViewImageTag);
         pictureBox.MouseDoubleClick += new MouseEventHandler(videoCuting);
         pictureBox.MouseHover += new EventHandler(pictureBox_MouseHover);
         pictureBox.SizeMode = PictureBoxSizeMode.Zoom;
         pictureBox.BringToFront();

        pictureBox.Location = new Point(pictureBoxlocationX + (100 * (i/frameRate)),         pictureBoxlocationY);
        panelTimeline.Controls.Add(pictureBox);

      }
  • wnv1 : Make sure the input packet is large enough

    19 septembre 2013, par Martin Storsjö
    wnv1 : Make sure the input packet is large enough
    

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/wnv1.c