Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (29)

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

  • unresolved external symbol of ffmpeg avutil.lib

    2 mai 2016, par Richard

    For some reason I can not get rid of this Linker error when using methods from ffmpeg libs !
    I built the ffmpeg libs myself with msys64 and linked the resulting libs to my current project. As soon as I want to use them I get about 10 LNK errors.
    I think I set all required linking right and also use the key word extern "C" without any success.
    When running dumpbin.exe it lists all used symbols, so those libs should be ok...
    Does anyone have a clue what´s going wrong ?

    #pragma once

    extern "C"
    {
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    }

    int main(int argc, char **argv[])
    {
    const char *output_type;
    /* register all the codecs */
    avcodec_register_all();

    return 0;
    }

    The error log looks like this :

    error LNK2019 : unresolved external symbol av_frame_free referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol avcodec_register_all referenced in function main
    error LNK2019 : unresolved external symbol avcodec_alloc_context3 referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol avcodec_open2 referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol avcodec_close referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol av_init_packet referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol av_packet_unref referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol avcodec_find_encoder referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol avcodec_encode_video2 referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    error LNK2019 : unresolved external symbol av_image_alloc referenced in function "void __cdecl video_encoding(char const *,int)" (?video_encoding@@YAXPEBDH@Z)
    oVideoRendererApp\x64\Debug_64\ImagesToVideoRendererApp.exe : fatal error LNK1120 : 14 unresolved externals

  • avpacket : Error out when creating 0-sized side data

    10 juin 2016, par Vittorio Giovara
    avpacket : Error out when creating 0-sized side data
    

    This mimics the behaviour of other av_*_new_side_data().
    This is not caught by the malloc check, since padding
    is always added to the allocated size.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavcodec/avpacket.c
  • stream_decoder : fix integer underflow due to malformed wasted_bits

    8 juillet 2016, par Max Kellermann
    stream_decoder : fix integer underflow due to malformed wasted_bits
    

    It is pretty easy for a malformed FLAC file to underflow the "bps"
    variable. In the debug build, this results in an assertion failure in
    FLAC__bitreader_read_raw_uint32() :

    FLAC__ASSERT(bits <= 32) ;

    In non-debug builds, this simply makes
    FLAC__bitreader_read_raw_uint32() fail because
    bitreader_read_from_client_() doesn’t find enough buffer space for
    2**32-1 bits. But since the failing FLAC_ASSERT() is reasonable, this
    should be caught in the FLAC__bitreader_read_raw_uint32() caller.

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>
    Closes : https://github.com/xiph/flac/pull/13

    • [DH] src/libFLAC/stream_decoder.c