Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (74)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (7524)

  • avdevice/decklink_dec : Convert decklink input module to use codecpar

    8 mai 2016, par Felt, Patrick
    avdevice/decklink_dec : Convert decklink input module to use codecpar
    

    There are still a couple of deprecated calls that I’m not sure what to do with.
    They are both related to some logic around AVCodecContext.coded_frame.
    I couldn’t find anywhere that really documented what that was, or where it was intended to move to.
    I left the warnings on.

    Reviewed-by : Deti Fliegl <deti@fliegl.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavdevice/decklink_dec.cpp
  • avcodec/opus : Move stuff shared by decoder and parser to a new file

    3 octobre 2022, par Andreas Rheinhardt
    avcodec/opus : Move stuff shared by decoder and parser to a new file
    

    opus.h (which is used by all the Opus code) currently includes
    several structures only used by the parser and the decoder ;
    several elements of OpusContext are even only used by the decoder.

    This commit therefore moves the part of OpusContext that is shared
    between these two components (and used by ff_opus_parse_extradata())
    out into a new structure and moves all the other accompanying
    structures and functions to a new header, opus_parse.h ; the
    functions itself are also moved to a new file, opus_parse.c.
    (This also allows to remove several spurious dependencies
    of the Opus parser and encoder.)

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/opus.c
    • [DH] libavcodec/opus.h
    • [DH] libavcodec/opus_parse.c
    • [DH] libavcodec/opus_parse.h
    • [DH] libavcodec/opus_parser.c
    • [DH] libavcodec/opusdec.c
  • How to manage hls in Nginx RTMP module

    27 mars, par syrkandonut

    I would like to manage the hls broadcast on request, like stop/start or some other way in Nginx RMTP module.&#xA;My rtmp server needs to support many cameras, however, when it does ffmpeg exec for 200-300 rtmp streams, this is very difficult for the processor, so I would like to execute the ffmpeg command in parallel only on request, how could this be done ?

    &#xA;

    Rtmp Server

    &#xA;

    rtmp {&#xA;    server {&#xA;        listen 1935;&#xA;        chunk_size 8192;&#xA;&#xA;        application live {&#xA;            live on;&#xA;            record off;&#xA;            drop_idle_publisher 10s;&#xA;            allow publish all;&#xA;&#xA;            on_publish rtmp-router:8082/on_publish;&#xA;&#xA;              exec ffmpeg -i rtmp://localhost:1935/live/$name&#xA;              -f lavfi -i anullsrc -c:v copy -c:a aac -shortest -f flv rtmp://localhost:1935/hls/$name_main;&#xA;        }&#xA;&#xA;&#xA;        application hls {&#xA;            live on;&#xA;            hls on;&#xA;            hls_fragment_naming system;&#xA;            hls_fragment 2;&#xA;            hls_playlist_length 4;&#xA;            hls_path /opt/data/hls;&#xA;            hls_nested on;&#xA;&#xA;            hls_variant _main BANDWIDTH=878000,RESOLUTION=640x360;&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    I would like to solve this through nginx or python itself, since the server running with threads is written in FastAPI.

    &#xA;