Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (37)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (3196)

  • fftools/cmdutils : Fix warning for initialization makes integer from pointer without...

    20 août 2021, par Limin Wang
    fftools/cmdutils : Fix warning for initialization makes integer from pointer without a cast
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] fftools/cmdutils.c
  • dxva : fix some warnings

    22 juin 2017, par wm4
    dxva : fix some warnings
    

    Some existed since forever, some are new.

    The cast in get_surface() is silly, but unless we change the av_log
    function signature, or all callers of ff_dxva2_get_surface_index(), it’s
    needed to remove the const warning.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/dxva2.c
  • How is decoded audio data stored in ffmpeg AVFrame ?

    23 février 2023, par necrosato

    I'm looking for clarification on how ffmpeg stores decoded audio data in frames before I start writing code to do audio mixing. AVFrame has int format and uint8_t* data[] members. If my understanding is correct, then the bytes in data should be cast to the proper type for format before working with it. So to do a simple 2x level boost if format == AV_SAMPLE_FMT_S16, I would :

    &#xA;&#xA;

    int16_t* audio_samples = frame->data[0];&#xA;int num_samples = frame->nb_samples * frame->channels;&#xA;for (int i = 0; i &lt; num_samples; &#x2B;&#x2B;i) {&#xA;  audio_samples[i] = audio_samples[i] * 2;&#xA;}&#xA;

    &#xA;&#xA;

    Is this the correct way of going about things ?

    &#xA;