Recherche avancée

Médias (91)

Autres articles (103)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6894)

  • Encoder/Decoder PCM to AMR Android

    6 novembre 2017, par ElHacker

    I’ve been looking for a while now for any java library that allows me to encode and decode a PCM-AMR audio stream that is sent through a TCP socket connection. Without having to use Android’s JNI.

    Is there anything that can help me ?

    In the worst case scenario. How can I do it using any C++ library with JNI ? (any reference of how to use ffmpeg with JNI will be appreciated)

    Hope you can help me.

  • doc/filters : Correct scale doc regarding w/h = 0

    12 juin 2017, par Kevin Mark
    doc/filters : Correct scale doc regarding w/h <= 0
    

    According to libavfilter/scale.c, if the width and height are both
    less than or equal to 0 then the input size is used for both
    dimensions. It does not need to be -1. -1 :-1 is the same as 0:0 which
    is the same as -10 :-42, etc.

    if (w < 0 && h < 0)
    eval_w = eval_h = 0 ;

    The documentation for the zscale filter has also been updated since the
    behavior is identical.

    Signed-off-by : Kevin Mark <kmark937@gmail.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] doc/filters.texi
  • Create 20 seconds video from 600 png images in FFMPEG

    6 novembre 2016, par Khawaja Muhammad SadeedUllah

    I want to Create a 20 seconds video from 600 png images in FFMPEG.

    The issue is , it creates a 20 seconds video BUT , the 600 frames are about used 10 times and repeats very fast about more than 10 times in 20 seconds.

    I’m using :

    ffmpeg -framerate 30000/1001 -i  

    Please Help ! Thanks in advance