Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (79)

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

  • Instagram android app doesn't see videos encoded with ffmpeg encoder

    1er septembre 2020, par qraqatit

    I am trying to use freeware software TEncoder (Windows 7) to create short 30 secs Instagram video using FFMpeg encoder (.mp4) but once created it is not seen by android IG app, better said it only see it as an empty gray rectangle.

    


    But when I use another encoder inside the TEncoder app - namely Mencoder - then IG app see the video without any problem, tho I do not want to use this encoder as it encodes vids with some sort of reddish-like tint (ugly and unusable).

    


    I got across another post where guy is suggesting to add something like loop to the script code for the FFMpeg encoder saying "...visual input is just one frame. I suspect IG doesn't like this. Loop it to make a video stream out of it.", but I am not sure how to do that in TEncoder : there is a field for "FFmpeg custom video options" or one long field called simply "FFmpeg". If anyone know how to add that loop there, be so kind and let me know.

    


    Or is there some other solution to this problem ?

    


  • lavfi/blend : use correct way to check number of planes

    2 mai 2013, par Paul B Mahol
    lavfi/blend : use correct way to check number of planes
    

    This fix crash with gray, as its marked as pseudopal,
    and thus have extra plane.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/vf_blend.c
  • I ues FFMPEG to convert bitmap to yuv,and try to save it,but failed

    20 avril 2013, par liaoyuandeyehuo

    I use this way to convert bitmap to yuv
    Save bitmap to video (libavcodec ffmpeg)
    and then save the buffer like this :

    FILE* fp=fopen("aha.yuv","w");
    if(!fp) return NULL;
    fwrite(outPic->data[0],nbytes,1,fp);
    fwrite(outBuffer,nbytes,1,fp);
    fclose(fp);

    but it has only several lines. All most all of the .yuv file is gray.
    I am sure the inbuffer points to the input BGR32 data. So where is wrong ?
    Is The way to save the outBuffer right ?