Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (43)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (7444)

  • FFMPEG - changing pixel format from 24-bit RGB to 8-bit Grayscale only changes color, but not file size

    27 septembre 2018, par Minjun Seong

    I am using the avlib* libraries and currently using the sws_getContext function to change pixel format from RGB (AV_PIX_FMT_RGB24) to grayscale (AV_PIX_FMT_GRAY8). The expected behavior should have been that the output file size should have decreased by 3 times as we are going from 24 bit rgb to 8 bit grayscale, but it stayed the same. Furthermore, when I checked on Media-Coder to see the format, the video format was still RGB. Any ideas on why the file size didn’t change and why the file format is still RGB ?

    Note : the video DID change to black and white as expected.

  • Video Size different for different frame rate after encoding [duplicate]

    24 décembre 2018, par random_28

    This question already has an answer here :

    I have a series of 600 frames in a dir. I am trying to encode them into a video using ffmpeg. Following is the command which I am using :

    ffmpeg -r INPUT_FPS -i out%03d.jpg -c:v libx264 -vf "fps=OUTPUT_FPS,format=yuv420p" out.mpeg

    I am unable to understand why changing the INPUT_FPS and OUTPUT_FPS affects the encoded file size.

    For e.g. :
    with INPUT_FPS=30, and OUTPUT_FPS=30 :
    the output file is 20 secs long and 20.7 Mb in size.

    with INPUT_FPS=60, and OUTPUT_FPS=60 :
    the output file is 10 secs long but size gets reduced to 16.7 Mb.

    Given both of the videos has 600 same frames, why this discrepancy in size of the encoded file ?

  • mpc8 : Check the seek table size parsed from the bitstream

    11 septembre 2013, par Martin Storsjö
    mpc8 : Check the seek table size parsed from the bitstream
    

    Limit the size to INT_MAX/2 (for simplicity) to be sure that
    size + FF_INPUT_BUFFER_PADDING_SIZE won’t overflow.

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

    • [DH] libavformat/mpc8.c