Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • FFmpeg rtsp over http authentication

    28 mars 2014, par user441918

    I am trying to connect an IP camera, in rtsp over http. I am using FFmpeg 1.0.7. The below code seems working fine if the camera is open to everyone. But if the camera requires authentication, the below code doesn't work as it doesn't pass the user credentials. I don't know how to pass the user credentials to FFMpeg library.

    // open video stream
    AVDictionary *serverOpt = NULL;

    av_dict_set(&serverOpt, "rtsp_transport", "http", 0);
    if (avformat_open_input(&_formatCtx, [url UTF8String], NULL, &serverOpt)!=0){
       NSLog(@"error opening stream");
       [self dealloc_helper];
       return -1; // Couldn't open file
    }

    Please advise.

  • Linker error with ffmpeg

    2 octobre 2013, par Martin Delille

    I'm trying to build a really simple Qt program using FFMpeg library.

    Currently I just want to open and close a video file.

    Here is my project file :

    QT    += core gui
    TARGET = avtest01
    TEMPLATE = app
    INCLUDEPATH += /usr/local/include
    LIBS += -L/usr/local/lib -lavformat
    SOURCES += main.cpp

    And my code :

    #include <qdebug>

    extern "C" {
    #include <libavformat></libavformat>avformat.h>
    }

    int main(int argc, char *argv[])
    {
       if(argc > 1)
       {
           AVFormatContext *format_context;
           qDebug() &lt;&lt; argv[1];
           if(avformat_open_input(&amp;format_context, argv[1], NULL, NULL) == 0)
           {
               qDebug() &lt;&lt; "open";
               avformat_close_input(&amp;format_context);
           }
           else
               qDebug() &lt;&lt; "error opening " &lt;&lt; argv[1];
       }    
       return 0;
    }
    </qdebug>

    Unfortunately, the linker fails :

    Undefined symbols for architecture x86_64:
     "avformat_open_input(AVFormatContext**, char const*, AVInputFormat*, AVDictionary**)", referenced from:
       _main in main.o
     "avformat_close_input(AVFormatContext**)", referenced from:
       _main in main.o

    I'm using Qt 5.1.0 on MacOS.

  • avcodec/dpx : return proper error code for unsupported files

    5 octobre 2013, par Paul B Mahol
    avcodec/dpx : return proper error code for unsupported files
    

    Also use avpriv_report_missing_feature().

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/dpx.c