Recherche avancée

Médias (91)

Autres articles (53)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

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

Sur d’autres sites (9038)

  • libdash mpd parser integration with custom player

    19 novembre 2016, par Raj

    I have written a multimedia player using ffmpeg and qt-framework. And currently I support local file playback and progressive download playback in my player. Now I want to add support for mpeg-dash vod stream playback. I thought of using libdash opensource dash library. But after so much of googling I couldn’t find any API or developer documentation regarding the same.

    Also another issue is libdash has integrated network module. But I want only mpd parser to be integrated and I have my own network module for downloading. I couln’t find any doxygen and usage documentation for libdash.

    I need help in these :

    1. Can you anyone point me to any developer documentation available for
      libdash ?
    2. Is there any alternative library for libdash ?
  • How to not add AdaptationSet for audio in cmd file if audio stream is not present in input video file

    15 juin 2019, par Saurabh

    I am using ffmpeg-dash to create mpd files. I am using following command to generate the same :

    ffmpeg -i input/video.mov \
           -map 0:v:0 -map 0:v:0 -map 0:v:0 -map 0:a\?:0 \
           -b:v:0 350k -c:v:0 libx264 -filter:v:0 "scale=320:-1" \
           -b:v:1 1000k -c:v:1 libx264 -filter:v:1 "scale=640:-1" \
           -b:v:2 3000k -c:v:2 libx264 -filter:v:2 "scale=1280:-1" \
           -use_timeline 1 -use_template 1 -window_size 6  -adaptation_sets "id=0,streams=v id=1,streams=a"  \
           -seg_duration 2 -threads 16 -hls_playlist true -f dash output/ffmpeg/output.mpd

    This works with video which has audio streams, but for the case there is no audio stream in the video file, I get empty entry for audio in mpd files like following, which is not valid and fails while playing in Exo Player in Android.

    <adaptationset contenttype="audio" segmentalignment="true" bitstreamswitching="true">
    </adaptationset>

    I tried adding ? in option adaptation_sets like : id=0,streams=v id=1,streams=a?, however that also adds above line.

    One solution is to run different commands for different videos by first checking whether there is audio stream or not, but would be better if there is some option which add audio adaptationSet only if audio stream is present in the input file.

  • avformat/mov : Enable stream parsing for VP9.

    7 septembre 2016, par Matthew Gregan
    avformat/mov : Enable stream parsing for VP9.
    

    MP4 media containing VP9 using superframes (such as
    https://github.com/Netflix/vp9-dash/raw/master/DASH-Samples/Fountain_2997_0560kbps_640x480_4x3PAR.ivf_DashUnencrypted.ismv)
    does not decode correctly with the built-in VP9 decoder because
    superframes are passed to the decoder whole rather than split into
    individual frames.

    Signed-off-by : Matthew Gregan <kinetik@flim.org>

    • [DH] libavformat/mov.c