Recherche avancée

Médias (91)

Autres articles (40)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (6130)

  • lavfi : set the link hwframes context before configuring the dst input

    21 juin 2016, par Anton Khirnov
    lavfi : set the link hwframes context before configuring the dst input
    

    The destination filter might expect the hw frames context to be already
    set (this is the case e.g. for hwdownload).

    • [DBH] libavfilter/avfilter.c
  • How to link libavcodec, libavformat in automake ?

    15 juillet 2014, par user2212461

    I am using the libavcodec and libavformat libraries from ffmpeg in a C++ project. Linking -lavcodec -lavformat with the g++ compiler works fine, but I’m not sure what goes wrong when I try to use the same code compiled in an automake project.

    Working fine :

    g++ -o test -D__STDC_CONSTANT_MACROS -lavcodec -lavformat test.cpp

    Not working Makefile.am :

    binaryname_LDFLAGS= -lavcodec -lavformat

    Error :

    ....
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_add_sp: error: undefined reference to 'av_tree_node_size'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_add_sp: error: undefined reference to 'av_tree_insert'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_free_sp: error: undefined reference to 'av_tree_enumerate'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_free_sp: error: undefined reference to 'av_tree_destroy'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(rtp.o):function
    ff_rtp_get_payload_type: error: undefined reference to 'av_opt_get_int'
    ...

    also not working :

    LDFLAGS=...-lavcodec -lavformat

    Error :

    src/dsp/audioDecoder.cpp:99: error: undefined reference to 'av_register_all'
    src/dsp/audioDecoder.cpp:101: error: undefined reference to 'avcodec_find_decoder'
    src/dsp/audioDecoder.cpp:109: error: undefined reference to 'avcodec_alloc_context'
    src/dsp/audioDecoder.cpp:120: error: undefined reference to 'avcodec_open2'
    src/dsp/audioDecoder.cpp:125: error: undefined reference to 'av_init_packet'
    src/dsp/audioDecoder.cpp:188: error: undefined reference to 'avcodec_decode_audio3'

    In the second case, if I don’t set any linker, the include header cannot be found so the linker seems somehow recognized.

    make V=1 returns :

    make  all-am
    make[1]: Go to '/path/to/trunk'
    /bin/bash ./libtool --tag=CXX   --mode=link g++  -O2 -lrt -D__STDC_CONSTANT_MACROS   -o binaryname progsrc/binaryname/binaryname-binaryname.o    -lm  -lpthread -ldl -lmygeneratedlibrary
    libtool: link: g++ -O2 -D__STDC_CONSTANT_MACROS -o binaryname progsrc/binaryname/binaryname-binaryname.o  -lm /path/to//trunk/.libs/lmygeneratedlibrary.a -lrt -lavutil -lavcodec -lavformat -lpthread -ldl
    make[1]: Leave '/path/to/trunk'

    What am I doing wrong here ?

  • Scrap audio from youtube video link in php

    14 avril 2014, par user2971441

    I have to create a system in PHP which takes youtube url as input and it should output its mp3 file.

    So how can i make it :- through FFMPEG or simply send an ajax request to some existing site who do this type of work ?

    Please suggest

    Thank You