Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (93)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (10137)

  • Revision 2702e3c8cf : Remove repeated tx_mode_select calls The frame level transform size selection i

    4 mars 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Remove repeated tx_mode_select calls

    The frame level transform size selection is done inside
    encode_frame_internal().

    Change-Id : Id7e5e417a3a3f88f875bf12b21bb8029bc6d0d82

  • How do I run FFmpeg functions like avformat_version() or avformat_configuration() in a simple C project ? 0x000007b error

    19 juillet 2023, par Alan Thomson

    I have compiled FFmpeg with shared libraries and linked it to my C project via CMake. Everything seems fine as I can run av_version_info(); in my C code and print the output with no issue. However, once I start using other simple commands like avformat_version(); or avformat_configuration();, my program crashes with no debugging output.

    


    What could be causing this ? I am on Windows and using Qt Creator as my IDE by the way.

    


    Here's main.c :

    


    #include &#xA;&#xA;#include <libavutil></libavutil>avutil.h>&#xA;#include <libavformat></libavformat>avformat.h>&#xA;#include <libavutil></libavutil>avassert.h>&#xA;&#xA;int main()&#xA;{&#xA;    const char* info1 = av_version_info();&#xA;    const int info2 = avformat_version();&#xA;    const char* info3 = avformat_configuration();&#xA;    printf(info1);&#xA;    printf("%d", info2);&#xA;    printf(info3);&#xA;&#xA;    return 0;&#xA;}&#xA;

    &#xA;

    Here's my CMakeLists.txt :

    &#xA;

    cmake_minimum_required(VERSION 3.5)&#xA;&#xA;project(PlainCApp LANGUAGES C)&#xA;&#xA;add_executable(PlainCApp main.c)&#xA;&#xA;target_include_directories(PlainCApp&#xA;    PUBLIC&#xA;    C:/FFmpeg&#xA;)&#xA;&#xA;target_link_libraries(PlainCApp&#xA;    PUBLIC&#xA;    C:/FFmpeg/libavformat/avformat.lib&#xA;    C:/FFmpeg/libavcodec/avcodec.lib&#xA;    C:/FFmpeg/libavutil/avutil.lib&#xA;    C:/FFmpeg/libswscale/swscale.lib&#xA;    C:/FFmpeg/libswresample/swresample.lib&#xA;#    C:/FFmpeg/libavdevice/avdevice.lib&#xA;#    C:/FFmpeg/libavfilter/avfilter.lib&#xA;#    C:/FFmpeg/libpostproc/postproc.lib&#xA;)&#xA;&#xA;install(TARGETS PlainCApp&#xA;    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}&#xA;    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}&#xA;)&#xA;

    &#xA;

    I tried looking into FFmpeg source to understand what could be causing this discrepancy. I also tried recompiling FFmpeg and downloading a newer version. None of this helped. The program still crashed :

    &#xA;

    enter image description here

    &#xA;

    However, good news is, it compiles with gcc inside MinGW just fine :&#xA;gcc main.c -o main -I C:/FFmpeg -L C:/FFmpeg/libavutil -lavutil -L C:/FFmpeg/libavformat -lavformat outputs as expected.

    &#xA;

  • Move packed B-frames message level to info.

    8 septembre 2013, par Reimar Döffinger
    Move packed B-frames message level to info.
    

    Since they generally decode fine, printing it as a warning
    might not really be appropriate.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>

    • [DH] libavcodec/mpeg4videodec.c