Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (104)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9367)

  • avutil/avstring : Limit string length in av_escape to range of int

    9 mars 2021, par Andreas Rheinhardt
    avutil/avstring : Limit string length in av_escape to range of int
    

    Otherwise the caller can't distinguish the return value from an error.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavutil/avstring.c
  • How to use FFmpeg from a location where access is denied? [closed]

    27 mars 2024, par quite a beginner

    I tried to convert m3u8 file to ts file with FFmpeg, but my ip address was being rejected and I couldn't. Is there any way to do this ?

    &#xA;

    I tried converting with glitch using glitch console and then downloading the entire repository, but I could only download up to 180MB.It was certainly a reliable method, but it failed because it could only use up to 180MB.

    &#xA;

  • How to access Nested structure member variables

    24 octobre 2013, par JAYANTHI

    I have an structure

    typedef struct AVFilter {

       const char *name;
       const char *description;
       const AVFilterPad *inputs;
       const AVFilterPad *outputs;
       const AVClass *priv_class;
       int flags;
       int (*init)(AVFilterContext *ctx);
       int (*init_dict)(AVFilterContext *ctx, AVDictionary **options);
       void (*uninit)(AVFilterContext *ctx);
       int (*query_formats)(AVFilterContext *);
       int priv_size;      
       struct AVFilter *next;
       int (*process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags);
       int (*init_opaque)(AVFilterContext *ctx, void *opaque);

    } AVFilter;

    I dont knw how to access nested structure variables and my code is,

       AVFilter avfilter_vsrc_color = {
       avfilter_vsrc_color.name            = "color",
       avfilter_vsrc_color.description     = NULL_IF_CONFIG_SMALL("Provide an uniformly colored input."),
       avfilter_vsrc_color.priv_class      = &amp;color_class, // error here
       avfilter_vsrc_color.priv_size       = sizeof(TestSourceContext),
       avfilter_vsrc_color.init            = color_init,
       avfilter_vsrc_color.uninit          = uninit,
       avfilter_vsrc_color.query_formats   = color_query_formats,
       avfilter_vsrc_color.inputs          = NULL,
       avfilter_vsrc_color.outputs         = color_outputs,
       avfilter_vsrc_color.process_command = color_process_command
    };

    I have compiled the code in vs2010 and I m Getting error like

    c:\users\awki6\desktop\ffmpeg\libavfilter\vsrc_testsrc.cpp(273): error C2440: &#39;initializing&#39; : cannot convert from &#39;const AVClass *&#39; to &#39;const AVFilterPad *&#39;
    2>          Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast