Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (60)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (9080)

  • h.265 encoding with ffmpeg, which preset question

    26 novembre 2018, par Christophe

    I’m using ffmpeg on the command line to encode video from a QuickTime ProRes 4444p DCI-resolution source to h.265, y420p. It’s working just fine, but I noticed something very odd : If I change nothing but the preset, the file size goes down as the encoding speed goes up :

    Preset and resulting file size :

    • veryslow : 5814379
    • slower : 5812081
    • slow : 5640739
    • medium : 5455779
    • fast : 5164506
    • faster : 5099833
    • veryfast : 5108824 (file size starts going up from this point)

    My question is : This is rather the opposite from what I’d expect. Am I missing something obvious ?

  • Reading custom SEI message when decoding using VideoCodec (NVENC)

    23 avril 2018, par cloudraven

    I have a series of videos with custom information encoded in the sei message NAL. Is it possible to read that information when decoding using the Nvidia hardware decoder. If it is not supported, should I use FFMPEG compiled with NVENC support instead ?

    UPDATE :
    I want to decode the media and read the SEI message. I am streaming live video and including postprocessing info in the sei message. The client has to use that info to apply effects to the decoded media.
    Decoding the media as quickly as possible is important, and I want to do it in hardware. I assume that the Nvidia decoder must parse the NAL units to decode them. I would like to avoid duplicating work if possible.

  • mpegvideo : Split picture allocation for encoding and decoding

    31 mai 2015, par Vittorio Giovara
    mpegvideo : Split picture allocation for encoding and decoding
    

    The main ff_alloc_picture() function is made more generic with all the
    parameters necessary as arguments. This will allows to move most of the
    related functions to a separate file later.

    Right now wrappers are provided to try and minimize the number of
    changes in the code.

    • [DBH] libavcodec/mpegvideo.c
    • [DBH] libavcodec/mpegvideo.h
    • [DBH] libavcodec/mpegvideo_enc.c