Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (103)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (12773)

  • avformat/riffenc : added possibility to set first to ninth audio language for RIFF...

    2 octobre 2016, par Florian Diemer
    avformat/riffenc : added possibility to set first to ninth audio language for RIFF taged files (e.g. avi files)
    

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

    • [DH] libavformat/riffenc.c
  • How do I include FFMpeg for development in a windows program ?

    4 août 2024, par Lama Mao

    I'm trying to follow a tutorial about using the FFMpeg libraries to extract frames from videos in C++ (by Bartholomew).

    &#xA;

    In order to include the libraries, according to the tutorial, it is advised to use pkg-config to find the libraries and put them together so that CMake can include them. In the video he uses homebrew to install ffmpeg and somehow pkg-config is able to find the header files for ffmpeg (libavcodec, libavformat, libavdevice ...)

    &#xA;

    The problem is I don't know how to get the ffmpeg libraries installed so that pkg-config can find them.

    &#xA;

    On windows, I've tried installing the compiled windows binaries, and I've tried installing ffmpeg-full package using chocolatey. However, I fail to see where these header files are installed to.

    &#xA;

    There's a ffmpeg folder in C:/ffmpeg/ but when I look in that there's no header files or libraries, just the binaries. Perhaps I need to clone the entire source project, but then how is pkg-config supposed to find them ? When I try and compile I get this output :

    &#xA;

     Found PkgConfig: C:/Strawberry/perl/bin/pkg-config.bat (found version "0.26") &#xA; Checking for module &#x27;libavcodec&#x27;&#xA; Can&#x27;t find libavcodec.pc in any of C:/Strawberry/c/lib/pkgconfig&#xA; use the PKG_CONFIG_PATH environment variable, or&#xA; specify extra search paths via &#x27;search_paths&#x27;&#xA; CMake Error at C:/Program Files/CMake/share/cmake-3.24/Modules/FindPkgConfig.cmake:607 (message):&#xA; A required package was not found&#xA; Call Stack (most recent call first):&#xA; C:/Program Files/CMake/share/cmake-3.24/Modules/FindPkgConfig.cmake:829 (_pkg_check_modules_internal)&#xA; lib/FFMpeg/CMakeLists.txt:5 (pkg_check_modules)&#xA; Checking for module &#x27;libavcodec&#x27;        &lt;----- here&#xA; Can&#x27;t find libavcodec.pc in any of C:/Strawberry/c/lib/pkgconfig&#xA; use the PKG_CONFIG_PATH environment variable, or&#xA; specify extra search paths via &#x27;search_paths&#x27;&#xA; CMake Error at C:/Program Files/CMake/share/cmake-3.24/Modules/FindPkgConfig.cmake:607 (message):&#xA; A required package was not found&#xA; Call Stack (most recent call first):&#xA; C:/Program Files/CMake/share/cmake-3.24/Modules/FindPkgConfig.cmake:829 (_pkg_check_modules_internal)&#xA; lib/FFMpeg/CMakeLists.txt:5 (pkg_check_modules)&#xA;

    &#xA;

    The contents of C:/Strawberry/c/lib/pkgconfig seem to be a whole load of libraries none of which are from ffmpeg.

    &#xA;

    In case the problem is in my CMakeLists file, here are the contents of the subdirectory file :

    &#xA;

    cmake_minimum_required(VERSION 3.9)&#xA;project(FFMpeg)&#xA;&#xA;find_package(PkgConfig REQUIRED)&#xA;pkg_check_modules(AVCODEC    REQUIRED    IMPORTED_TARGET libavcodec)&#xA;pkg_check_modules(AVFILTER   REQUIRED    IMPORTED_TARGET libavformat)&#xA;pkg_check_modules(AVDEVICE   REQUIRED    IMPORTED_TARGET libavdevice)&#xA;pkg_check_modules(AVUTIL     REQUIRED    IMPORTED_TARGET libavutil)&#xA;pkg_check_modules(SWRESAMPLE REQUIRED    IMPORTED_TARGET libswresample)&#xA;pkg_check_modules(SWSCALE    REQUIRED    IMPORTED_TARGET libswscale)&#xA;&#xA;add_library(FFMpeg INTERFACE IMPORTED GLOBAL)&#xA;&#xA;target_include_directories(&#xA;    FFmpeg INTERFACE&#xA;    ${AVCODEC_INCLUDE_DIRS}&#xA;    ${AVFILTER_INCLUDE_DIRS}&#xA;    ${AVDEVICE_INCLUDE_DIRS}&#xA;    ${AVUTIL_INCLUDE_DIRS}&#xA;    ${SWRESAMPLE_INCLUDE_DIRS}&#xA;    ${SWSCALE_INCLUDE_DIRS}&#xA;)&#xA;&#xA;target_link_options(&#xA;    FFmpeg INTERFACE&#xA;    ${AVCODEC_LDFLAGS}&#xA;    ${AVFILTER_LDFLAGS}&#xA;    ${AVDEVICE_LDFLAGS}&#xA;    ${AVUTIL_LDFLAGS}&#xA;    ${SWRESAMPLE_LDFLAGS}&#xA;    ${SWSCALE_LDFLAGS}&#xA;)&#xA;

    &#xA;

    What have I done wrong/am not understanding ?

    &#xA;

  • movenc : Factorize a function for finding a metadata entry and the associated language

    18 mai 2016, par Martin Storsjö
    movenc : Factorize a function for finding a metadata entry and the associated language
    

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

    • [DBH] libavformat/movenc.c