Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (41)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (8845)

  • fate/vvc : Add vvc-frames-with-ltr.vvc

    8 janvier, par Frank Plowman
    fate/vvc : Add vvc-frames-with-ltr.vvc
    

    This sample is rather difficult, containing a lot of subtle edge cases
    which revealed errors in the VVC decoder. It covers 88.4% of lines in
    libavcodec/vvc and brings the line coverage of the entire VVC fate suite
    from 96.3% to 97.2%.

    Signed-off-by : Frank Plowman <post@frankplowman.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] tests/fate/vvc.mak
    • [DH] tests/ref/fate/vvc-frames-with-ltr
  • Merge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’

    4 février 2014, par Michael Niedermayer
    Merge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
    

    * commit ’e46ad30a808744ddf3855567e162292a4eaabac7’ :
    vp8 : use a fixed-size edge emu buffer

    Conflicts :
    libavcodec/vp8.c
    libavcodec/vp8.h

    See : face578d56c2d1375e40d5e2a28acc122132bc55
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/vp8.c
    • [DH] libavcodec/vp8.h
  • how to stream from multiple unknown-beforehand mp4 files to html5 video tag

    2 avril 2017, par Lana Nova

    I would like to enable the following flow :

    1. segment a video stream from a webcam using ffmpeg into mp4 files,
    2. transform those video files using opencv
    3. stream the resulting mp4 files using html5 video tag

    I found that for #3 above I can use ffmpeg to transcode to HLS format :

    sudo ffmpeg -i /tmp/edge-data/part-00000000.mp4 -profile:v baseline -level 3.0 -s 640x360 -start_number 5 -hls_time 10 -hls_list_size 0 -f hls /var/www/html/playlist.m3u8

    and then use videojs to augment the html5 video tag and point it at the m3u8 playlist file generated by the ffmpeg command above.

    My problem is that I have multiple mp4 files that are not known in advance. So, in a way, I need to be continuously adding items to the m3u8 playlist file.

    I found I can do it manually by removing the EXIT subsection of the m3u8 file and appending paths to new .ts files manually. Is there an option to do that with ffmpeg instead ?

    Is there an easier way to accomplish what I’m trying to do here ?

    Thanks !