Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (28)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (3110)

  • doc/examples/decoder_targeted : move to tools/target_dec_fuzzer.c

    29 janvier 2017, par Rostislav Pehlivanov
    doc/examples/decoder_targeted : move to tools/target_dec_fuzzer.c
    

    Name and purpose are more appropriate there since the code isn’t
    an ideal example.

    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] tools/target_dec_fuzzer.c
  • battery performance of vlc player on android

    7 juillet 2013, par rajneesh

    i want to support custom video file-format to be played on android.
    for the purpose i want to modify the vlc player for android, but i am concerned that vlc might be doing "software video decoding" and which might have impact on battery life.

    I want to understand the following

    1. Is there any battery life comparison between software and hardware decoding of video codecs.
    2. does vlc on android make use of hardware decoder.if available on phone ?
    3. does file format have any impact on the selection of hardware or software decoder
  • ffmpeg's av_read_frame will block or not ?

    24 janvier 2020, par Daniel

    There is a question posted on StackOverflow that asks if there is any mode to wait until a valid data comes with av_read_frame : link.

    My question is the opposite :
    Can I be sure that this method will always return with either -1, 0 or 1 ?

    I.e. it will not block ? In the official docs, there is no mention on this subject.

    Some threads also mention setting up an interrupt callback for this purpose.

    But I would need a solid non-blocking call which means I can do other tasks during waiting for a network video. If there is no exact way to define if av_read_frame can be set to non-blocking I would go with threads but I’d rather not doing that.