Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (63)

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

  • avformat/jvdec : Make sizeof(JVFrame) smaller to save memory

    23 septembre 2021, par Andreas Rheinhardt
    avformat/jvdec : Make sizeof(JVFrame) smaller to save memory
    

    Reviewed-by : Peter Ross <pross@xvid.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/jvdec.c
  • How to modify and save image using ffmpeg command in android

    5 mai 2022, par Nishant Mishra

    "-i -vf colorchannelmixer=$s -acodec copy -pix_fmt yuv420p "&#xA;This command is not able to create or override the file in Android device.

    &#xA;

  • how do I save the videos in an specific bitrate using ffmpeg ?

    15 mai 2022, par david

    I am trying to save some videos in specific bitrate (8000k) and for this, I used the following code :

    &#xA;

    ffmpeg  -i  input_1080p60  -c:v  libx264 -pix_fmt yuv420p  -b:v 8000K -bufsize 8000K -minrate 8000K -maxrate 8000K -x264opts keyint=120:min-keyint=120 -preset veryfast -profile:v high out_1080p.264&#xA;

    &#xA;

    but after saving the videos, I find out each video has a different bitrate except 8000k ( for example 5000k, 6000k, 7500k,...). but I define the minrate 8000k. do you know what is the problem and how can I force the above code to have the specific bitrate ? Thank you.

    &#xA;