Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (67)

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

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

Sur d’autres sites (6972)

  • Unable to link QtFFmpegWrapper sample on Win7 with VS 2012

    20 juillet 2014, par mschwarz

    I am trying to incorporate QtFFmpegWrapper in my program, but both my program and the provided sample won’t link with ffmpeg :

    QVideoEncoder.obj:-1: Error: LNK2019: unresolved external symbol _avcodec_init referenced in function "protected: bool __thiscall QVideoEncoder::initCodec(void)" (?initCodec@QVideoEncoder@@IAE_NXZ)
    QVideoDecoder.obj:-1: Error: LNK2001: unresolved external symbol _avcodec_init
    QVideoEncoder.obj:-1: Error: LNK2019: unresolved external symbol _avcodec_thread_init referenced in function "public: bool __thiscall QVideoEncoder::createFile(class QString,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int)" (?createFile@QVideoEncoder@@QAE_NVQString@@IIIII@Z)
    QVideoEncoder.obj:-1: Error: LNK2019: unresolved external symbol _avcodec_open referenced in function "public: bool __thiscall QVideoEncoder::createFile(class QString,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int)" (?createFile@QVideoEncoder@@QAE_NVQString@@IIIII@Z)

    and 10 or so more like these ...

    Why do these pop up when linking ? The libs are all there and found, it just seems like the linker has issues with them ...

    I use the following setup for my project :

    Everything is 32Bit.

  • How to correctly link static ffmpeg build using g++ ?

    22 juillet 2014, par user2212461

    I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :

    g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
    /path/to/libavformat.a /path/to/libavcodec.a

    but get a relatively large list of errors looking like :

    ....
    libavcodec/cscd.c:91: error: undefined reference to 'uncompress'
    libavcodec/flashsv.c:191: error: undefined reference to 'inflateReset'
    ...
    libavcodec/vaapi.c:131: error: undefined reference to 'vaMapBuffer'
    libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
    libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
    libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'

    What am I doing wrong here ?

  • How to correctly link ffmpeg to static build "g++ -static" ?

    22 juillet 2014, par user2212461

    I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :

    g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
    /path/to/libavformat.a /path/to/libavcodec.a

    but get the following list of errors, although I configured ffmpeg with —disable-libopus :

    libavcodec/opusdec.c:376: error: undefined reference to 'swr_is_initialized'
    libavcodec/opusdec.c:222: error: undefined reference to 'swr_is_initialized'
    libavcodec/opusdec.c:163: error: undefined reference to 'swr_init'
    libavcodec/opusdec.c:169: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:236: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:117: error: undefined reference to 'swr_convert'
    libavcodec/opusdec.c:408: error: undefined reference to 'swr_close'
    libavcodec/opusdec.c:557: error: undefined reference to 'swr_close'
    libavcodec/opusdec.c:579: error: undefined reference to 'swr_free'
    libavcodec/opusdec.c:629: error: undefined reference to 'swr_alloc'

    What am I doing wrong here ?