Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (48)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

  • webmdashenc : Support for live stream manifests

    1er avril 2015, par Vignesh Venkatasubramanian
    webmdashenc : Support for live stream manifests
    

    This patch adds support for creating DASH manifests for WebM Live
    Streams. It also updates the documentation and adds a fate test to
    verify the behavior of the new muxer flag.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/muxers.texi
    • [DH] libavformat/webmdashenc.c
    • [DH] tests/fate/vpx.mak
    • [DH] tests/ref/fate/webm-dash-manifest-live
  • Documented ffmpeg commands not recognized by ffmpeg

    2 avril 2020, par agconti

    I'm trying to use options like, ldash and http_opts, as the dash muxer docs describe but FFmpeg doesn't recognize them. I'm on the latest released version of ffmpeg, v4.2.2. I see the changes in the ffmpeg master branch but not in the v4.2 release branch. Does ffmpeg not recognize them because they haven't been released yet ?

    &#xA;&#xA;

    Here's the dash muxer docs for reference : https://ffmpeg.org/ffmpeg-all.html#dash-2

    &#xA;&#xA;

    Here's a minimal example command with uncut output :

    &#xA;&#xA;

    Andrews-MacBook-Pro :: dev/test ‹master› &#xBB; ffmpeg -re -i test.mp4 \                                   &#xA;-map 0 -map 0 -c:a libfdk_aac -c:v libx264 \&#xA;-b:v:0 800k -b:v:1 300k -s:v:1 320x170 -profile:v:1 baseline \&#xA;-profile:v:0 main -bf 1 \&#xA;-b_strategy 0 -ar:a:1 22050 \&#xA;-adaptation_sets "id=0,streams=v id=1,streams=a" \&#xA;-ldash 1 \&#xA;-f dash ./output/out.mpd&#xA;&#xA;ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg developers&#xA;  built with Apple clang version 11.0.0 (clang-1100.0.33.17)&#xA;  configuration: --prefix=/usr/local/Cellar/ffmpeg/4.2.2_2 --enable-shared --enable-pthreads --enable-version3 --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libbluray --enable-libmp3lame --enable-libopus --enable-librubberband --enable-libsnappy --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librtmp --enable-libspeex --enable-libsoxr --enable-videotoolbox --disable-libjack --disable-indev=jack&#xA;  libavutil      56. 31.100 / 56. 31.100&#xA;  libavcodec     58. 54.100 / 58. 54.100&#xA;  libavformat    58. 29.100 / 58. 29.100&#xA;  libavdevice    58.  8.100 / 58.  8.100&#xA;  libavfilter     7. 57.100 /  7. 57.100&#xA;  libavresample   4.  0.  0 /  4.  0.  0&#xA;  libswscale      5.  5.100 /  5.  5.100&#xA;  libswresample   3.  5.100 /  3.  5.100&#xA;  libpostproc    55.  5.100 / 55.  5.100&#xA;Unrecognized option &#x27;ldash&#x27;.&#xA;Error splitting the argument list: Option not found&#xA;

    &#xA;

  • nginx-rtmp video stream seeking functionality

    26 décembre 2020, par Priyansh Singh

    I am trying to make a video streaming service by using nginx-rtmp for reading stream and sending a dash/hls streaming media&#xA;Used this link for live streaming media

    &#xA;

    I used obs for sending the stream to nginx&#xA;But it is a live stream and user cant seek the stream

    &#xA;

    so, is there a way so that users cana actually seek it&#xA;Or is there a better way to stream video using dash/hls

    &#xA;