Recherche avancée

Médias (91)

Autres articles (34)

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

  • License or not ? As website owner do i have to pay license for using ffmpeg (x264) -> mp4 decoding in my webiste ?

    28 août 2014, par linderman

    I am very confused about my legal or illegal rights to use H.264 mp4 file.

    I had long time reading various websites about should i pay license or not ... still cant understand ..

    So here is the exact situation :

    I have website , where users can upload their videos. Videos are taken with their smart-phones or home cameras , or webcam etc.

    After they upload their videos , i am using FFMPEG (x264) to convert the video from 3gp, mov, or even "mp4 to mp4".

    Then other users can watch these decoded videos on my website.

    I am not charging the end users anything. My website is free for uploaders and viewers.

    You will be right if you say that my website have the same purpose as youtube - and you will be right.. video sharing !

    So ME - as website owner , hosting buyer and ffmpeg user ... should i have to pay license ? OR ABANDON THE MP4 decoding in my website ?

    Thank you

  • avcodec/xbmenc : Pre-compute variables once for parse_str_int()

    1er février 2021, par Jose Da Silva
    avcodec/xbmenc : Pre-compute variables once for parse_str_int()
    

    Some compilers are very intuitive, and others are not so much, so let's
    pre-compute the variables e and keylen outside the for loop. Ensuring a
    minor speed increase regardless of if compiler is smart enough to solve
    this improvement for itself, or not.

    Signed-off-by : Joe Da Silva <digital@joescat.com>

    • [DH] libavcodec/xbmdec.c
  • FFmpeg : chromakey without green edges

    5 septembre 2020, par Igniter

    I have a video of a person on green background and I'm trying to turn background transparent by this :

    &#xA;

    ffmpeg -i bg.mp4 -i man.mp4 -filter_complex &#x27;[1:v]colorkey=0x00ff00:0.3:0.3[ckout];[0:v][ckout]overlay[out]&#x27; -map &#x27;[out]&#x27; result.mp4&#xA;

    &#xA;

    Colorkey gives this quite noticeable green edge around the person's figure.
    &#xA;Any attempts to increase opacity or blend parameters result in disappearing facial features.

    &#xA;

    enter image description here

    &#xA;

    Is there any smart way to change pure green 0x00ff00 pixels with transparent ones ?

    &#xA;