Recherche avancée

Médias (91)

Autres articles (92)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (6338)

  • avcodec/jpegxl_parse{,r} : use correct ISOBMFF extended size location

    27 novembre 2023, par Leo Izen
    avcodec/jpegxl_parse,r : use correct ISOBMFF extended size location
    

    According to ISO/IEC 14996-12, size == 1 means a 64-bit extended-size
    field occurs *after* the 32-bit box type, not before. This fix should
    allow correct parsing of JXL files with extended-size boxes.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavcodec/jpegxl_parse.c
    • [DH] libavcodec/jpegxl_parser.c
  • OpenCV : File Size of H.264 encoded videos

    12 mai 2015, par limekiln

    I write a program that creates a video file out of an image sequence using OpenCV. It runs fine and does what it should, but I realized something I can’t explain. My Videowriter looks like this :

    VideoWriter video(name + ".avi", CV_FOURCC(FOURCC[0], FOURCC[1], FOURCC[2], FOURCC[3]), fps, cvSize((int)width, (int)height));

       for (;;)
       {
           capture >> frame;
           if (frame.empty())
               break;
           if (!frame.data)
           {
               cerr &lt;&lt; "Could not retrieve frame.";
               return -1;
           }
           video &lt;&lt; frame;
       }

    For compression, I use either "MJPG", "M4S2" (some MPEG-4 codec) or "X264" (a H.264 codec). I’m getting the "fps" value by user input. Everything works fine, but I found that the output file of X264 encoded videos scales with the fps, the higher the fps the smaller the output file. For the other 2 the size remains the same, just the length of the video changes (as I would expect since it should have the same number of frames, just in another amount of time).
    Can anyone explain me why the file size changes using X264 here ?

  • rtpdec : inform jitter buffer size

    15 septembre 2015, par Eloi BAIL
    rtpdec : inform jitter buffer size
    

    This commit print as AV_LOG_VERBOSE the jitter buffer
    size. It might be the default value or the value set by application.

    Signed-off-by : Eloi BAIL <eloi.bail@savoirfairelinux.com>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtpdec.c