Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (64)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (12784)

  • How to convert jquery animation to movie or gif format ?

    19 avril 2019, par Barış Demirdelen

    How to convert jquery animation to movie or gif format ?
    Animation and screenshot functions call or too slow.
    Help me please

    Animation Function

    function resim1(){
       $("#resim-1").animate({ left: leftx}, startEffectTime1);
       ......
    }

    ScreenShot Function but too slow

    function shot(){
             html2canvas($("#main"), {
                 onrendered: function(canvas) {
                     theCanvas = canvas;
                     document.body.appendChild(canvas);
                     Canvas2Image.saveAsPNG(canvas);
                     $("#img-out").append(canvas);
                 }
             });
    }

    Call animation and screenshot functions

    $(document).ready(function() {
        resim1(); // Animate start
        setInterval(function(){ // Screenshot start
             shot();
        },500);

    });

    Bottom function call animation breaking :/

    $(document).ready(function() {
        resim1(); // Animate start
        setInterval(function(){ // Screenshot start
             shot();
        },500);

    });
  • SDL ffmpeg subtitles

    25 février 2013, par ildaronline

    I'm trying to update SDL surface with ffmpeg subtitles. I only gain empty white rectangle.

    void testSubtitle(SDL_Surface *screen, int type, AVSubtitleRect *sub_rect, VideoState *is)
    {

    SDL_Surface *subtitleSurf =
           SDL_AllocSurface(SDL_SWSURFACE, sub_rect->w, sub_rect->h, 8, 0, 0, 0, 0);

    text1 = SDL_CreateTextureFromSurface(SDL_PIXELFORMAT_RGB565, subtitleSurf);


    SDL_UpdateTexture(text1, NULL,sub_rect->pict.data[0], sub_rect->pict.linesize[0]);

    SDL_Rect rect;

    rect.x = 0;
    rect.y = 0;
    rect.w = sub_rect->w;
    rect.h = sub_rect->h;

    SDL_RenderCopy(text1, NULL, &rect);
  • FFmpeg library render text/ass subtitles

    30 juin 2017, par yhc

    I’m trying to make FFmpeg render text/ASS subtitles into bitmap after it decodes the packets into AVSubtitle structure. In the AVSubtitle documentation there is this description :

    uint8_t* AVSubtitleRect::data[4]

    data+linesize for the bitmap of this subtitle.
    Can be set for text/ass as well once they are rendered.

    However, I can’t find any other information on how to enable this. Can anyone please provide a hint ?