Recherche avancée

Médias (91)

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • 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

Sur d’autres sites (12701)

  • Encoding FFMPEG to MPEG-DASH – or WebM with Keyframe Clusters – for MediaSource API

    26 janvier 2017, par Chris Nolet

    I’m currently sending a video stream to Chrome, to play via the MediaSource API.

    As I understand it, MediaSource only supports MP4 files encoded with MPEG-DASH, or WebM files that have clusters beginning with keyframes (otherwise it raises the error : Media segment did not begin with keyframe).

    Is there any way to encode in MPEG-DASH or keyframed WebM formats with FFMPEG in real-time ?

    Edit :

    I just tried it with ffmpeg ... -f webm -vcodec vp8 -g 1 ... so that every frame is a keyframe. Not the ideal solution. It does work with MediaStream now though. Any way to sync up the segments with the keyframes in WebM so not every frame needs to be a keyframe ?


    Reference Questions on WebM / MP4 and MediaSource :

    Media Source Api not working for a custom webm file (Chrome Version 23.0.1271.97 m)

    MediaSource API and mp4

  • lavf : Add WebM DASH Manifest Muxer

    14 juillet 2014, par Vignesh Venkatasubramanian
    lavf : Add WebM DASH Manifest Muxer
    

    This patch adds the ability to generate WebM DASH manifest XML using
    ffmpeg. A sample command line would be as follows :

    ffmpeg \
    -f webm_dash_manifest -i video1.webm \
    -f webm_dash_manifest -i video2.webm \
    -f webm_dash_manifest -i audio1.webm \
    -f webm_dash_manifest -i audio2.webm \
    -map 0 -map 1 -map 2 -map 3 \
    -c copy \
    -f webm_dash_manifest \
    -adaptation_sets “id=0,streams=0,1 id=1,streams=2,3” \
    manifest.xml

    It works by exporting necessary fields as metadata tags in matroskadec
    and use those values to write the appropriate XML fields as per the WebM
    DASH Specification [1]. Some ideas are adopted from webm-tools project
    [2].

    [1]
    https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification
    [2]
    https://chromium.googlesource.com/webm/webm-tools/+/master/webm_dash_manifest/

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

    • [DH] Changelog
    • [DH] RELEASE_NOTES
    • [DH] doc/muxers.texi
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/version.h
    • [DH] libavformat/webmdashenc.c
  • ffmpeg - Seek to absolute time stamp in MPEG DASH segment [closed]

    30 mai 2024, par iBent

    I need to extract short audio segments at specific time stamps from specific dash segments.

    &#xA;

    I tried the following :

    &#xA;

    ffmpeg -ss 00:10:00 -i segment_x.m4s -t 10 out.mp3&#xA;

    &#xA;

    -ss seeks relative to the segment's start time however, and not absolutely.&#xA;That absolute time data is there however as ffmpeg prints it during the conversation like this :

    &#xA;

    Duration: 00:10:14.01, start: 595.018667, bitrate: 7 kb/s&#xA;

    &#xA;

    How can I make ffmpeg extract the audio from exactly 00:10:00 to 00:10:10 ?

    &#xA;