Recherche avancée

Médias (91)

Autres articles (22)

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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

Sur d’autres sites (2821)

  • fftools/ffmpeg_dec : apply decoder options manually

    22 mars 2024, par Anton Khirnov
    fftools/ffmpeg_dec : apply decoder options manually
    

    Do not pass an options dictionary to avcodec_open2().

    This should be equivalent to current behaviour, but will allow
    overriding caller-supplied options in a cleaner and more robust manner.

    We can now set the COPY_OPAQUE flag directly rather going through
    dec_opts.

    • [DH] fftools/ffmpeg_dec.c
  • Native function in Vitamio

    1er août 2014, par hclee

    I am now looking the code beind the Vitamio (media framework) cause I want to know what API does it use to retrieve the buffer percentage/download rate and how it interect with the android OS to retrieve other information about the streaming video.

    But I realized that it does use some native functions which enable it use some code written in C/C++ language.

    I try to investigate on the C++ code but I don’t know where are they.
    I guessed they are stored inside the res/raw/librarm.so.
    I unzipped the file but all I can find is some machine code but what I want is the implementation of the native function.

    For example, I want to know the implementation of the following function :

    public native int getVideoTrack() ; // What is this function for ? What does it mean by the track
    // number of a straming video ?

    or

    private static native boolean loadFFmpeg_native(String ffmpegPath) ;

    and when will this function be called :

    private static void postEventFromNative(Object mediaplayer_ref, int what, int arg1, int arg2, Object obj)

    Do anyone know where can I investigate the implementation of such native function.
    It should be some C++ code but I don’t want machine code...

    I went to
    https://www.vitamio.org/en/2013/Tutorial_0509/13.html

    but they didn’t have the thing that I want

    Thanks in advance !!!

  • avformat_find_stream_info : Do not consider no streams an error in flush codecs

    2 juillet 2013, par Michael Niedermayer
    avformat_find_stream_info : Do not consider no streams an error in flush codecs
    

    This should have no functional effect, but allows a cleaner diff when moving it
    down

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

    • [DH] libavformat/utils.c