Recherche avancée

Médias (91)

Autres articles (81)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6647)

  • ffmpeg : Failed to call av_register_all

    19 décembre 2013, par oferbar

    I've got an Windows 7 application that is using ffmpeg to decode video frames.

    It is using an older version of ffmpeg (not sure exactly which one) but it is working ok, except some decoding errors when calling avcodec_decode_video2 from increasing number of threads.

    So I decided to upgrade the ffmpeg to a newer build and got 2.1.1 (latest).
    I got it off http://ffmpeg.zeranoe.com/builds/

    I managed to compile the application using the new include/libs.

    However, when I run the application it throws an exception that a function was not found during dll loading.
    I traced that to av_register_all() which is inside avformat.lib and avformat-55.dll.

    It looks like the definition of this function in tha ffmpeg library was changed over the versions. It no longer points to avformat-55.dll (none that I was able to find using dumpbin).

    So what is the best way to call this function from a C++ dll ?

    Currently, in my include file I have this :

    extern "C"
    {
    #include "libavutil\dict.h"
    #include "libavcodec\avcodec.h"
    #include "libavformat\avformat.h"

    };

    #pragma comment(lib,"avcodec.lib")
    #pragma comment(lib,"avformat.lib")
    #pragma comment(lib,"avutil.lib")

    Many thanks !

    Ofer

  • avconv : Call exit_program instead of exit in avconv_opt as well

    31 juillet 2013, par Martin Storsjö
    avconv : Call exit_program instead of exit in avconv_opt as well
    

    This seems to have been missed in 636ced8e1dc.

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

    • [DBH] avconv_opt.c
  • fftools/ffmpeg_mux_init : move the ost_get_filters() call to ost_bind_filter()

    24 septembre 2024, par Anton Khirnov
    fftools/ffmpeg_mux_init : move the ost_get_filters() call to ost_bind_filter()
    

    That is a more appropriate place for it.

    • [DH] fftools/ffmpeg_mux_init.c