Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (37)

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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5045)

  • Qt C++ ffmpeg cannot find library

    7 juin 2013, par Carnifrex

    I use Qt 5.0.2 with Mingw 4.7 on windows.

    I'm working on a c++ program and i'm trying to get the duration of video files. I found ffmpeg. Now i tried to compile a simple program but I think it fails with the libraries. I've tried to include both the shared and dev but they both will fail. ( Zeranoe FFmpeg builds)

    This is my pro file :

    TEMPLATE = app
    CONFIG += console
    CONFIG -= app_bundle
    CONFIG -= qt

    SOURCES += main.cpp

    INCLUDEPATH += C:\programming\ffmpeg-20130606-git--win32-shared\bin

    LIBS += -LC:\programming\ffmpeg-20130606-git--win32-shared\bin -lavcodec-55.dll -     lavformat-55.dll -lavutil-52.dll

    i get errors like :

    " :-1 : error : cannot find -lavcodec-55.dll"

    " :-1 : error : cannot find -lavformat-55.dll"

    I've also tried :

    INCLUDEPATH += C:\programming\ffmpeg-20130606-git--win32-dev\include
    INCLUDEPATH += C:\programming\ffmpeg-20130606-git--win32-dev\lib

    LIBS += -LC:\programming\ffmpeg-20130606-git--win32-dev\lib -lavcodec -lavformat -lavutil

    LIBS += -LC:\programming\ffmpeg-20130606-git--win32-dev\lib -llibavcodec.dll.a -llibavformat.dll.a -llibavutil.dll.a

    Here it gives a error "During startup program exited with code 0x0000135'

    I even tried to include each library individually. But no results..

    This is my main file :

    #include <iostream>
    using namespace std;
    extern "C" {
     #include <libavcodec></libavcodec>avcodec.h>    // required headers
     #include <libavformat></libavformat>avformat.h>
    }
    int main(int argc, char**argv) {
      av_register_all();             // offending library call
      return 0;
    }
    </iostream>

    A program simple as this will have 2 outcomes :

    1. the program runs but crashes if i call 'av_register_all()'
    2. It just tells me he cannot find the libraries.

    Can someone tell me what it is i'm doing wrong ? Or even give me a hint ? I can't really find a lot of good documentation on this one.

    Thanks in advance !

  • How to install dylib files on mac ?

    1er mars 2019, par Pan

    I am trying to write a cross-platform program. This program uses libavcodec from ffmpeg to decode audio files. I downloaded the shared build from Zeranoe. Then I copied the .dylib files into /usr/local/lib. However the linker repeatedly says : library not found for -lavcodec. I am sure I added the option -L/usr/local/lib.

    What is the proper way to install these dylib files ?

  • Problems with using on user computers without ffmeg

    8 janvier 2021, par DevilPD

    My Python program uses ffmpeg. However, if ffmeg was installed on your computer at the time of deployment and is not configured or does not exist in a directory such as the exe file, it will not work normally. If my program has to use ffmpeg while running, I would like to use it in the same folder in the library folder. What should I do ?

    &#xA;

      try:&#xA;        for i in sp_text:&#xA;            try:&#xA;                output_dir = os.path.join(&#x27;./&#x27;, &#x27;%(playlist_title)s&#x27;, &#x27;%(playlist_index)s. %(title)s.%(ext)s&#x27;)&#xA;&#xA;                download_list = [&#xA;                    i,&#xA;                ]&#xA;&#xA;                ydl_opt = {&#xA;                    &#x27;outtmpl&#x27;: output_dir,&#xA;                    &#x27;format&#x27;: &#x27;bestaudio/best&#x27;,&#xA;                    &#x27;postprocessors&#x27;: [{&#xA;                        &#x27;key&#x27;: &#x27;FFmpegExtractAudio&#x27;,&#xA;                        &#x27;preferredcodec&#x27;: &#x27;mp3&#x27;,&#xA;                        &#x27;preferredquality&#x27;: &#x27;192&#x27;,&#xA;                    }, {&#x27;key&#x27;: &#x27;FFmpegMetadata&#x27;}, ],&#xA;                }&#xA;&#xA;                with youtube_dl.YoutubeDL(ydl_opt) as ydl:&#xA;                    ydl.download(download_list)&#xA;&#xA;                self.lbl.setText(&#x27;Success!&#x27;)&#xA;            except:&#xA;                self.lbl.setText(&#x27;Error1&#x27;)&#xA;    except:&#xA;        self.lbl.setText(&#x27;Error2&#x27;)&#xA;

    &#xA;