Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (53)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (7190)

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