Recherche avancée

Médias (91)

Autres articles (83)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (4113)

  • Merge commit ’1f9237f2ac46dfbed1bfa1f4f0f1314c2a1d62ec’

    27 décembre 2014, par Michael Niedermayer
    Merge commit ’1f9237f2ac46dfbed1bfa1f4f0f1314c2a1d62ec’
    

    * commit ’1f9237f2ac46dfbed1bfa1f4f0f1314c2a1d62ec’ :
    avconv_vdpau : allocate video surface of VDPAU-specified size

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffmpeg_vdpau.c
  • What is the difference between raw MediaCodec implementation with FFmpeg integrated MediaCodec ?

    30 avril 2022, par Michael

    I google around the sample code for MediaCodec and notice there are three kinds of implementation in the market :

    &#xA;

      &#xA;
    1. Java version
    2. &#xA;

    3. NDK version with raw MediaCodec API
    4. &#xA;

    5. NDK version but FFmpeg takes care of everything
    6. &#xA;

    &#xA;

    I guess Java version is different on the performance side and use less frequently, but 2 & 3 are very confusing.

    &#xA;

    If choose option 3, the work is easier and a noticeable change from SW decoding would be avcodec_find_decoder_by_name("h264_mediacodec"), and the implementation can easily share with iOS VideoToolBox.

    &#xA;

    My question is would it be any performance or device compatible drawbacks compared with raw MediaCodec API ? Why did someone choose to use raw MediaCodec API ?

    &#xA;

    Plus what if I use surface mode ?

    &#xA;

  • Yes or no, will ffmpeg api do hardware decoding on iOS ?

    15 janvier 2019, par Fattie

    There seems to be conflicting information on this.

    https://trac.ffmpeg.org/wiki/HWAccelIntro

    notice the first diagram, it firmly marks iOS as “Y” on VideoToolbox

    enter image description here

    however in the comments down the bottom it says

    VideoToolbox. ​VideoToolbox, only supported on macOS. H.264 decoding is available in FFmpeg/libavcodec.

    And in the confusing second diagram it says "Standalone" is not done for VideoToolbox.

    We have found that using ffmpeg compiled in to iOS .... it seems to not use hardware decoding, which is really a pain.

    1. With avcodec_get_hw_config() we get AV_PIX_FMT_VIDEOTOOLBOX, AV_HWDEVICE_TYPE_VIDEOTOOLBOX which is seemingly correct.

    2. But usage and framerates clearly shows everything is being done in CPU. The code is in ff_hevc_hls_residual_coding all the time. (That’s fffmpeg’s software decoder.)

    3. This very diff very long git.videolan.org URL here seems to suggest again it should all be working.

    4. Have tried every iPhone etc. of course