Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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" (...)

Sur d’autres sites (9352)

  • swscale : extract monowhite/black output from yuv2packed[12X]_c().

    9 juin 2011, par Ronald S. Bultje

    swscale : extract monowhite/black output from yuv2packed[12X]_c().

  • swscale : extract monowhite/black output from yuv2packed[12X]_c().

    9 juin 2011, par Ronald S. Bultje

    swscale : extract monowhite/black output from yuv2packed[12X]_c().

  • What's the difference between avfilter_graph_parse_ptr() and avfilter_link() ?

    17 mai 2022, par Jeycri

    I use the same set of codec to verify different methods.For audio, there is little difference between the two methods. For video, the following situation will occur.
This is the way use avfilter_link(), but it can't trim video.

    


    ...
const AVFilter *trim = avfilter_get_by_name("trim");
char args[128] = { 0 };
snprintf(args, sizeof(args), "start=10:end=60");
AVFilterContext *trim_ctx;
avfilter_graph_create_filter(&trim_ctx, trim, "video_trim", args, NULL, videofilterGraph);
avfilter_link(videoBuffSrc, 0, trim_ctx, 0);
...
const AVFilter *setpts= avfilter_get_by_name("setpts");
char args[128] = { 0 };
snprintf(args, sizeof(args), "PTS-STARTPTS");
AVFilterContext *setpts_ctx;
avfilter_graph_create_filter(&setpts_ctx, setpts, "video_setpts", args, NULL, videofilterGraph);
avfilter_link(trim_ctx, 0, setpts_ctx, 0);
...
//Finally linked format and buffsink.


    


    This is the way use avfilter_graph_parse_ptr(), it works well.

    


    AVFilter* buffersrc = avfilter_get_by_name("buffer");
AVFilter* buffersink = avfilter_get_by_name("buffersink");
AVFilterInOut* inputs = avfilter_inout_alloc();
AVFilterInOut* outputs = avfilter_inout_alloc();
...
avfilter_graph_parse_ptr(videofilterGraph, "trim=start=10:end=60,setpts=PTS-STARTPTS", &inputs, &outputs, NULL)