Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (25)

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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

Sur d’autres sites (4981)

  • Creating uncompressed video files from sequences of images with partial looping

    18 septembre 2021, par Ethan Kendrick

    I have multiple sequences of 7 images. I would like to encode these 7 images into a 10 fps video file that cycles through the first 4 images in the first 4 frames, and then repeats the rest of the images in a looping order for a total of n frames. For example, a 32-frame video file as follows :

    


    12345676567656765676567656765676

    


    Is there a way to predetermine the order of the 7 frames, including duplicates (the repetition of images 5, 6, and 7) ?

    


  • avcodec/jpegtables : Unavpriv MJPEG-tables

    10 février 2021, par Andreas Rheinhardt
    avcodec/jpegtables : Unavpriv MJPEG-tables
    

    There are seven MJPEG-tables, five small (1x12, 4x17) and two
    not small (2x162). These are all avpriv, despite this not being
    worthwhile due to the overhead of exporting a symbol : The total
    overhead for each symbol consists of two entries in .dynsym (24B each),
    one entry in the importing library's .rela.dyn (24B) and one in .got
    (8B) as well as 2x2B for symbol versions and 4B for symbol hashes
    in the exporting library ; in addition to that, the name of the symbol
    is included in both exporting and importing libraries, using 2x210 bytes
    in this case.
    (The above numbers are for a x64 Elf/Linux/GNU system. Other platforms
    will give different numbers.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/g2meet.c
    • [DH] libavcodec/jpegtables.c
    • [DH] libavcodec/jpegtables.h
    • [DH] libavcodec/jpegtabs.h
    • [DH] libavcodec/ljpegenc.c
    • [DH] libavcodec/mjpeg2jpeg_bsf.c
    • [DH] libavcodec/mjpegdec.c
    • [DH] libavcodec/mjpegenc.c
    • [DH] libavcodec/mjpegenc_common.c
    • [DH] libavcodec/mss4.c
    • [DH] libavcodec/vaapi_encode_mjpeg.c
    • [DH] libavformat/Makefile
    • [DH] libavformat/jpegtables.c
    • [DH] libavformat/rtpdec_jpeg.c
    • [DH] libavformat/rtpenc_jpeg.c
  • How to get frame progress in c# from FFMPEG

    26 mars 2022, par Saghar Francis

    I am first time using Process namespace in c# I am using FFMPEG to add a watermark in the video. I am successfully adding the watermark but I also want to show the progress in my program console. How can I get a frame no that on currently FFmpeg on.

    &#xA;

    To achieve this I am also using ffprobe to get the total number of frames and after that, I will divide it with current frame no so that I will get the progress. The problem is I don't know how to get the frame no while ffmpeg is doing processing on video.

    &#xA;