Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (105)

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

  • Revision 1aa7fd5aef : Using stride (# of elements) instead of pitch (bytes) in fdct16x16. Just making

    18 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /test/dct16x16_test.cc


     Modify /vp9/common/vp9_rtcd_defs.sh


     Modify /vp9/encoder/vp9_dct.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/x86/vp9_dct_sse2.c



    Using stride (# of elements) instead of pitch (bytes) in fdct16x16.

    Just making fdct consistent with iht/idct/fht functions which all use
    stride (# of elements) as input argument.

    Change-Id : I2d95fdcbba96aaa0ed24a80870cb38f53487a97d

  • Revision e5fa44c869 : Using stride (# of elements) instead of pitch (bytes) in fdct8x8. Just making f

    18 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /test/fdct8x8_test.cc


     Modify /vp9/common/vp9_rtcd_defs.sh


     Modify /vp9/encoder/vp9_dct.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/x86/vp9_dct_sse2.c



    Using stride (# of elements) instead of pitch (bytes) in fdct8x8.

    Just making fdct consistent with iht/idct/fht functions which all use
    stride (# of elements) as input argument.

    Change-Id : Ibc944952a192e6c7b2b6a869ec2894c01da82ed1

  • How to specify start and end frames when making a video with ffmpeg

    29 mai 2023, par supercool

    I am working with python in a jupyter notebook, and I am trying to use ffmpeg to specify the start and end images and convert several images from a folder into a single video. I have a folder, 'images', with the images inside labeled, 'image0', 'image1', 'image2', etc. I would like to specify the start and end images in my video. For example, I would like to be able to make the video using 'image100', to 'image200'. Right now, I have :

    


    !/home/jovyan/ffmpeg-dir/ffmpeg -i /home/jovyan/images/image%d.bmp -frames:v 1000 /home/jovyan/output.mp4


    


    This is making the video correctly, but I believe it is just taking the first 1000 images.

    


    Thanks !