Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (83)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (10049)

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

    


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

  • FFmpeg av_guess_format returns NULL

    12 septembre 2014, par Kage

    I’m following the example code here : http://cekirdek.pardus.org.tr/ ismail/ffmpeg-docs/output-example_8c-source.html

    My code is as follows :

    fmt = av_guess_format(NULL, filename, NULL);
    if (!fmt) {
           LOGE(1,"Could not deduce output format from file extension: using MPEG.\n");
           fmt = av_guess_format("mp4", NULL, NULL);
    }
       if (!fmt) {
           LOGE(1, "Could not find suitable output format\n");
           exit(1);
    }

    The two times that I call av_guess_format, it is returning NULL both times.
    I am calling both av_register_all() and avcodec_register_all() beforehand.

    Any ideas as to why this is returning NULL ?

    Thanks in advance.