Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (79)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5691)

  • How to use FFmpeg compression methods in our own C project ?

    29 février 2016, par Sir DrinksCoffeeALot

    I’m currently working on compressing video data on one port and sending it to another port where the data will be decompressed. I would like to try LZW compression method. I’m using pretty old and outdated FFmpeg build (only .h, .lib, .dll files). Problem is that i don’t have any headers to include to get access to LZW encoder and decoder.

    Idea is to open video file, split it into frames, compress them using one of the methods and send them to some remote location where they will be decompressed and concencated into video file.

  • use ffmpeg in a voice recorder project

    8 juillet 2014, par user3789242

    please anyone can help me of how to use ffmpeg to allow the user to choose which format he wants to save the audio ??the audio is a voice recorder using HTML5.I managed to record the voice but don’t know how to use ffmpeg for format conversion since the saved audio is wave and the user should be able to covert it to mp3,pcm or any else format

  • FFMPEG library usage for own C++ project

    2 août 2017, par Chien-Yu Chan

    I would like to create my own project using FFMPEG to build a player, but creating a new file to include ffmpeg library seems not easy. I have configure the ffmpeg and make build.

    ./configure

    ./make

    The ffmpeg hello world program (myffmpeg.c) :

    #include <libavformat></libavformat>avformat.h>
    int main(int argc, char *argv[]) {
     av_register_all();
     return 0;
    }

    but it shows

    clang : warning : treating ’c’ input as ’c++’ when in C++ mode, this behavior is deprecated

    Undefined symbols for architecture x86_64 :

    "av_register_all()", referenced from :

    _main in myffmpeg-61ec1b.o

    ld : symbol(s) not found for architecture x86_64

    clang : error : linker command failed with exit code 1 (use -v to see invocation

    When I try to link the allformats.o file, which has av_register_all function inside. I got :

    clang : warning : treating ’c’ input as ’c++’ when in C++ mode, this behavior is deprecated
    Undefined symbols for architecture x86_64 :
    "_av_register_input_format", referenced from :
    _register_all in allformats.o
    "_av_register_output_format", referenced from :
    _register_all in allformats.o
    "_avcodec_register_all", referenced from :
    _register_all in allformats.o
    "_ff_a64_muxer", referenced from :
    _register_all in allformats.o

    ...

    "_ff_yuv4mpegpipe_muxer", referenced from :
    _register_all in allformats.o
    ld : symbol(s) not found for architecture x86_64
    clang : error : linker command failed with exit code 1 (use -v to see invocation)

    It should be my bad Makefile knowledge, could anyone give me some hint on how to call ffmpeg library functions ? Or even how to modify the Makefile to build my own program ? Thanks !

    *Update :
    It could be my compiling command problem, is it the way to compile ?

    g++ myffmpeg.c