Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (11419)

  • av_guess_format return null

    19 mai 2013, par Iva

    I used example from http://cekirdek.pardus.org.tr/ ismail/ffmpeg-docs/output-example_8c-source.html :

    out_ctx = avformat_alloc_context();
    out_ctx->oformat = av_guess_format(NULL, filename, NULL);
    if (out_ctx->oformat == NULL)
    {
       out_ctx->oformat = av_guess_format("mpeg4", NULL, NULL);
       if (out_ctx->oformat == NULL)
       {
           LOGI(1, "Could not guess output format\n");
           exit(1);
        }
    }

    av_guess_format always return null. I don't understand what I must re-configured in FFMPEG for enable any formats.

  • av_guess_format return null

    21 février, par Iva

    I used example from http://cekirdek.pardus.org.tr/ ismail/ffmpeg-docs/output-example_8c-source.html :

    



    out_ctx = avformat_alloc_context();
out_ctx->oformat = av_guess_format(NULL, filename, NULL);
if (out_ctx->oformat == NULL)
{
    out_ctx->oformat = av_guess_format("mpeg4", NULL, NULL);
    if (out_ctx->oformat == NULL)
    {
        LOGI(1, "Could not guess output format\n");
        exit(1);
     }
}


    



    av_guess_format always return null. I don't understand what I must re-configured in FFMPEG for enable any formats.

    


  • can't livestream on facebook as 720p when using API

    1er août 2018, par boygiandi

    I just realized that when we using facebook api to create a livestream ( /me/live_videos ) , we only get 360p as output max even we sent 1080p. But, if we use Facebook dialog, we can get to 720p, the same video input.

    FB.ui({
       display: 'popup',
       method: 'live_broadcast',
       phase: 'create',
    }, function(response) {
       FB.ui({
         display: 'popup',
         method: 'live_broadcast',
         phase: 'publish',
         broadcast_data: response
       }, function(response) {
       });
    });

    https://developers.facebook.com/docs/graph-api/reference/live-video/

    Does anyone know how to get 720p when we use Facebook graph API ?