Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (64)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (5808)

  • avfilter/f_metadata : add pts_time to print output

    9 mai 2016, par Tobias Rapp
    avfilter/f_metadata : add pts_time to print output
    

    This allows e.g. to correlate signalstats metadata to time position
    without having to find out the filter chain timebase first.

    Signed-off-by : Tobias Rapp <t.rapp@noa-archive.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/f_metadata.c
  • doc/filters : add links to ffmpeg-utils and ffmpeg documentation

    22 février 2018, par Tobias Rapp
    doc/filters : add links to ffmpeg-utils and ffmpeg documentation
    

    Signed-off-by : Tobias Rapp <t.rapp@noa-archive.com>

    • [DH] doc/filters.texi
  • Is it possible to save an audio stream with pure JavaScript in the browser ?

    8 juin 2016, par Konstantin

    I would like to make a webpage where visitors can save audio streams by clicking on links (not live streams, but links from a radio archive which uses streams), I want to do this without a server backend with pure JavaScript in the browser.
    I read somewhere about the JavaScript port of FFMpeg, which can encode and save video / audio in the browser utilizing so called blobs. However download library is huge, as far as I remember 17 MB. In fact I would need only stream copying the audio streams, not a real encoding process.
    I usually use similar commands to save a programme :

    ffmpeg -i http://stream.example.com/stream_20160518_0630.mp3 -c copy -t 3600 programme.mp3

    I wonder, is it possible to compile a subset of FFMpeg into JavaScript which provides only the really needed stream copying ?