Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (112)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (4214)

  • lavf/http: remove duplicated dec flag.

    19 avril 2013, par Clément Bœsch

    lavf/http: remove duplicated dec flag.

  • RTSP tunneled HTTP, FFMPEG

    13 janvier 2016, par Jon Andersen

    I’m trying to stream from an Axis ip camera which uses RTSP over HTTP.
    I can get the normal RTSP stream to work, but I can’t find any information or documentation on how to actually set the tunneling mode for the stream. It is supported in the source code by setting the control_transport to RTSP_MODE_TUNNEL . My question is simple how do I do this with the following code ?

    int ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip/axis-media/media.amp" UTF8String], NULL, NULL);

    I tried the following :

    pFormatCtx = avformat_alloc_context();
    pFormatCtx->priv_data = malloc(sizeof(RTSPState));
    RTSPState *rt = pFormatCtx->priv_data;
    rt->control_transport = RTSP_MODE_TUNNEL;
    int ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip/axis-media/media.amp" UTF8String], NULL, NULL);

    But it simply ignores it for me (It still keeps using RTP). I tried this aswell

    int ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip/axis-media/media.amp" UTF8String], NULL, NULL);
    RTSPState *rt = pFormatCtx->priv_data;
    rt->control_transport = RTSP_MODE_TUNNEL;

    How would I solve this ? I’m thinking it’s something really simple since the ENUM is there.

    Working solution is

    AVDictionary *opts = 0;
    int ret = av_dict_set(&opts, "rtsp_transport", "http", 0);


    ret = avformat_open_input(&pFormatCtx, [@"rtsp://ip:80/axis-media/media.amp" UTF8String], NULL, &opts);

    av_dict_free(&opts);
  • Set HTTP error as file error.

    26 avril 2013, par blueimp
    m js/jquery.fileupload-angular.js
    
    Set HTTP error as file error.