Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (102)

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (12316)

  • doc/ffmpeg : improve -disposition, -stats, and -progress documentation

    17 octobre 2024, par Soma Lucz
    doc/ffmpeg : improve -disposition, -stats, and -progress documentation
    

    - disposition :
    Clarify the meaning of the default value, and how the '+' and '-'
    prefixes work. Add more examples.

    - stats :
    Clarify that it appears as an "info"-level log.

    - progress :
    Add info about the "progress" key's value being "continue" or "end".
    Add an example of logging to stdout.

    Signed-off-by : Soma Lucz <luczsoma@gmail.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] doc/ffmpeg.texi
  • avcodec/mpeg12dec : extract only one type of CC substream

    12 mars 2024, par Marth64
    avcodec/mpeg12dec : extract only one type of CC substream
    

    In MPEG-2 user data, there can be different types of Closed Captions
    formats embedded (A53, SCTE-20, or DVD). The current behavior of the
    CC extraction code in the MPEG-2 decoder is to not be aware of
    multiple formats if multiple exist, therefore allowing one format
    to overwrite the other during the extraction process since the CC
    extraction shares one output buffer for the normalized bytes.

    This causes sources that have two CC formats to produce flawed output.
    There exist real-world samples which contain both A53 and SCTE-20 captions
    in the same MPEG-2 stream, and that manifest this problem. Example of symptom :
    THANK YOU (expected) —> THTHANANK K YOYOUU (actual)

    The solution is to pick only the first CC substream observed with valid bytes,
    and ignore the other types. Additionally, provide an option for users
    to manually "force" a type in the event that this matters for a particular
    source.

    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavcodec/mpeg12dec.c
  • intreadwrite : Indicate potential aliasing in AV_RN/AV_WN for Clang/MSVC mode

    1er août 2023, par Martin Storsjö
    intreadwrite : Indicate potential aliasing in AV_RN/AV_WN for Clang/MSVC mode
    

    Use the GCC specific codepath for Clang in MSVC mode too.
    This matches the condition used in a number of other places.

    MSVC doesn't have a way to signal potential aliasing, while GCC
    (and Clang) can use __attribute__((may_alias)) for this purpose.

    When building with Clang in MSVC mode, __GNUC__ isn't defined but
    _MSC_VER is as Clang primarily impersonates MSVC - but even then it
    does support the GCC style attributes.

    The GCC specific codepath uses av_alias, which expands to
    the may_alias attribute if supported. The MSVC specific codepath
    doesn't use av_alias so far (as MSVC doesn't support any
    corresponding attribute).

    This fixes a couple HEVC decoder tests when built with Clang 14 or
    newer in MSVC mode (with issues observed on all of x86_64, armv7
    and aarch64).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/intreadwrite.h