Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (35)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4148)

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

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