Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • doc/mailing-list-faq : remove dead link

    14 août 2024, par vipyne
    doc/mailing-list-faq : remove dead link
    

    https://ffmpeg-archive.org/ is no longer "Nabble"
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/mailing-list-faq.texi
  • MAINTAINERS : Add webpage link to our mailing list page

    28 août 2024, par Michael Niedermayer
    MAINTAINERS : Add webpage link to our mailing list page
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] MAINTAINERS
  • C++ how to link ffmpeg with cmake on windows

    6 décembre 2016, par onurmhb

    I have downloaded ffmpeg dev files from ffmpeg.zeranoe.com and succesfully included the headers in my application. However, I am getting undefined errors when linking.

    undefined reference to `avformat_open_input(AVFormatContext**, char const*, AVInputFormat*, AVDictionary**)'

    I am using a FindFFMEG.cmake file to find ffmpeg library. From the cmake cache I see that it finds the library :

    FFMPEG_avcodec_LIBRARY:FILEPATH=C:/Users/User/Google Drive/workspace/C++/Project/Dependencies/ffmpeg/lib/libavcodec.dll.a
    ...

    This is how I am linking :

    find_package(FFMPEG REQUIRED)
    if (FFMPEG_FOUND)
       target_link_libraries(${PROJECT_NAME} ${FFMPEG_LIBRARIES})
       include_directories(${FFMPEG_INCLUDE_DIR})
    endif (FFMPEG_FOUND)

    I guess I am missing some files that should be included ?

    How can I link ffmpeg correcly in my c++ project with cmake ?

    Edit :
    I am using mingw64