Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (99)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • 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 !