Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (66)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (6574)

  • lavc/libaribcaption : add MSZ character related options

    17 octobre 2023, par TADANO Tokumei
    lavc/libaribcaption : add MSZ character related options
    

    This patch adds two MSZ (Middle Size ; half width) character
    related options, mapping against newly added upstream
    functionality :

    * `replace_msz_japanese`, which was introduced in version 1.0.1
    of libaribcaption.
    * `replace_msz_glyph`, which was introduced in version 1.1.0
    of libaribcaption.

    The latter option improves bitmap type rendering if specified
    fonts contain half-width glyphs (e.g., BIZ UDGothic), even
    if both ASCII and Japanese MSZ replacement options are set
    to false.

    As these options require newer versions of libaribcaption, the
    configure requirement has been bumped accordingly.

    Signed-off-by : TADANO Tokumei <aimingoff@pc.nifty.jp>

    • [DH] configure
    • [DH] doc/decoders.texi
    • [DH] libavcodec/libaribcaption.c
    • [DH] libavcodec/version.h
  • http: Add the trailing endlines if they are missing

    23 juillet 2015, par Luca Barbato
    http: Add the trailing endlines if they are missing
    

    Makes slightly easier the life of those want to use the option
    from the command line

    • [DBH] libavformat/http.c
  • Restreaming HLS video source to RTMP using ffmpeg.autogen

    23 juin 2021, par Andrew Wilcockson

    I am trying to write a C# restreaming class that will take HLS/m3u8 H264 encoded video streams and restream them as RTMP H264 encoded video.&#xA;I started with the simple transport stream recorder sample and was able to make it work in the following scenarios :&#xA;UDP restreamed to UDP (mpegts)&#xA;UDP restreamed to RTMP (flv)&#xA;HLS restreamed to UDP (mpegts)&#xA;But cannot for the life of me get it to work with HLS to RTMP.&#xA;I get a failure return code of -22 on my call to avformat_write_header&#xA;Note that I can make this work perfectly from the command line version of ffmpeg with the following command :&#xA;ffmpeg -i http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_1660.m3u8 -vcodec libx264 -f flv rtmp://rtmpserver/streamname

    &#xA;