Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (105)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (10308)

  • avcodec/vvcdec : allocate and store structs on their own within the table list

    9 janvier 2024, par James Almer
    avcodec/vvcdec : allocate and store structs on their own within the table list
    

    Fixes "runtime error : member access within misaligned address 0xf00 for type
    'struct bar', which requires # byte alignment" errors under GCC ubsan.

    Reviewed-by : Nuo Mi <nuomi2021@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/vvc/vvcdec.c
  • wmapro : make sure there is room to store the current packet

    28 juin 2013, par Luca Barbato
    wmapro : make sure there is room to store the current packet
    

    Prevent horrid and hard to trace struct overwrite.

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org

    • [DBH] libavcodec/wmaprodec.c
  • Why am I not able to store the HLS file in the path that is mounted to AWS S3 while converting using ffmpeg ? [closed]

    17 juin 2024, par Arjit

    why am I not able to store HLS file to the path which is mounted to AWS S3 while converting a RTMP stream using FFMPEG ? It's work when the path is non-mounted.

    &#xA;

    Actually I m using NGINX-RTMP to run a rtmp server & I want it in the form of HLS thats why the RTMP block look like this :

    &#xA;

    rtmp{&#xA;    server{&#xA;        listen 1935;&#xA;        chunk_size 4096;&#xA;        # allow publish 127.0.0.1;&#xA;        allow publish all;&#xA;        # deny publish all;&#xA;&#xA;        application live{&#xA;            live on;&#xA;            record off;&#xA;&#xA;            hls on;&#xA;            hls_path /tmp/hls;&#xA;            hls_fragment 10s;&#xA;            hls_playlist_length 5m;&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    And I mounted that HLS path (in this case /tmp/hls)to a AWS S3 bucket using S3FS and its not storing only when the path mounted.what can be a good solution of this ?

    &#xA;

    Why this happen & what can be a good solution of this ?

    &#xA;