Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

Sur d’autres sites (9515)

  • Set overlay opacity style for each content change (not just on open). Fixes #121

    14 février 2013, par jackmoore

    m jquery.colorbox-min.js m jquery.colorbox.js Set overlay opacity style for each content change (not just on open). Fixes #121

  • Revision 38a4412e1b : vp9 : apply loopfilter inline if possible excludes tiled content currently Chan

    19 juillet 2013, par James Zern

    Changed Paths :
     Modify /vp9/common/vp9_loopfilter.c


     Modify /vp9/common/vp9_loopfilter.h


     Modify /vp9/decoder/vp9_decodframe.c


     Modify /vp9/decoder/vp9_onyxd_if.c


     Modify /vp9/decoder/vp9_onyxd_int.h



    vp9 : apply loopfilter inline if possible

    excludes tiled content currently

    Change-Id : I44155253e8d6771e5e039d663be5f21cc9d0355d

  • Is there a way to get ffmpeg to continuously output streaming content to s3 ?

    24 janvier 2021, par Pineapple Joe

    I have ffmpeg receiving an rtsp stream and its outputting hls files. I want those files to be continuously stored on s3. its not clear how to do this.

    


    I've seen other similar posts but the solutions are always single file outputs piped to the aws cli. In this case I have an indefinite incoming stream and multiple files to output.

    


    This is what I currently have.

    


       ffmpeg <input stream="stream" here="here" />&#xA;   -f segment \&#xA;   -segment_list_flags live \&#xA;   -segment_time 1 \&#xA;   -segment_list_size 5 \&#xA;   -segment_format mpegts \&#xA;   -segment_list public/st/streaming.m3u8 \&#xA;   -segment_list_type m3u8 \&#xA;   -segment_list_entry_prefix ./ \&#xA;   public/st/%d.ts&#xA;

    &#xA;

    I also have limited space as it will be running in lambda so its not like I can just store the files locally then copy after its done.

    &#xA;

    is this possible ?

    &#xA;