Recherche avancée

Médias (91)

Autres articles (60)

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

  • fftools/ffmpeg : drop the 'h' key handling

    21 mars 2022, par Anton Khirnov
    fftools/ffmpeg : drop the 'h' key handling
    

    This undocumented feature runtime-enables dumping input packets. I can
    think of no reasonable real-world use case that cannot also be
    accomplished in a different way. Keeping this functionality would
    interfere with the following commit moving it to the input thread (then
    setting the variable would require locking or atomics, which would be
    unnecessarily complicated for a feature that probably nobody uses).

    • [DH] fftools/ffmpeg.c
  • x86/tx_init : propely indicate the extended available transform sizes

    9 février 2024, par Lynne
    x86/tx_init : propely indicate the extended available transform sizes
    

    Forgot to do this with the previous commit.

    Actually makes the assembly being used.

    Still the fastest FFT in the world, 15% faster than FFTW on the
    largest available size.

    • [DH] libavutil/x86/tx_float_init.c
  • Converting PNG images to MP4 in Jupyter

    15 mars 2020, par Steve H

    This has had me going round in circles for hours, so I’m hoping one of you kind gents can help.

    I am trying to learn more about data science and have followed this course on creating a population pyramid (https://www.viralml.com/video-content.html?v=WmyYyOtZwzs). There were a few problems in the code, which I rectified, but one has eluded me.

    I am trying to convert a collection of images in the format anim_%d.png to an mp4 file using the code :

    ffmpeg -framerate 10 -i "anim_%d.png" -pix_fmt yuv420p out.mp4

    However, I get an invalid syntax error.

    I have also tried :

    avconv -f image2 -i anim_%d.png -r 76 -s 800x600 foo.avi

    then :

    ffmpeg -r 10 -i "anim_%d.png" -pix_fmt yuv420p out.mp4

    But they all give a syntax error.

    I am using Jupyter, via Anaconda on a Windows machine with Python 3.

    Any help would be greatly appreciated.

    Thanks
    Steve