Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (58)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

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

  • movenc : Allow writing a DASH sidx atom at the start of files

    21 octobre 2014, par Martin Storsjö
    movenc : Allow writing a DASH sidx atom at the start of files
    

    This is mapped to the faststart flag (which in this case
    perhaps should be called "shift and write index at the
    start of the file"), which for fragmented files will
    write a sidx index at the start.

    When segmenting DASH into files, there’s usually one sidx
    at the start of each segment (although it’s not clear to me
    whether that actually is necessary). When storing all of it
    in one file, the MPD doesn’t necessarily need to describe
    the individual segments, but the offsets of the fragments can be
    fetched from one large sidx atom at the start of the file. This
    allows creating files for the DASH ISO BMFF on-demand profile.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h
  • FFMPEG DASH - Live Streaming a Sequence of MP3 Clips

    4 décembre 2018, par Daniel

    I am attempting to create a online radio application using FFMPEG - an audio only DASH stream.

    I have a directory of mp3 clips (all of the same bitrate and sample size) which I am encoding to the AAC format and outputting to a mpd.

    This is the current command I am working with to stream a single mp3 file :

    ffmpeg -re -i <input />.mp3 -c:a aac -use_timeline 1 -use_template 1 -window_size 5 -f dash <out>.mpd
    </out>

    (Input and output paths have been substituted for < input >.mp3 and < output >.mpd in this snippet)

    I am running a web server and have made the mpd accessible on it. I am testing the stream using VLC player at the moment.

    The problem :
    Well, the command works, but it will only work for one clip at a time. Once the next command is run immediately proceeding the completion of the first, VLC player will halt and I need to refresh the player to continue.

    I’m aiming for an uninterrupted stream wherein the clips play in sequence.
    I imagine the problem is that a new mpd is being created with no reference to the previous one, and what I ought to be doing is appending segments to the existing mpd - but I don’t know how to do that using FFMPEG.

    The question : Is there such a command to append segments to a previously existing mpd file in FFMPEG ? or am I coming at this problem all wrong ? Perhaps I should be using FFMPEG to format the clips into these segments, but then adjusting the mpd file manually.

    Any help or suggestions would be very much appreciated !

  • generate mpeg dash segments in specific directory using FFMPEG

    30 novembre 2023, par hegazy

    I need to generate mpeg dash mpd file and m4s chunks files for streaming which is working perfectly.

    &#xA;

    The issue is the segments parts (.m4s files) generated in the app directory (ignoring the output .mpd file location) which restricted by the server, and any generated file should be generated only in specific location.

    &#xA;

    so is there a way to specify the segments location using ffmpeg ?

    &#xA;