Recherche avancée

Médias (91)

Autres articles (85)

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

  • Can I save a matplotlib animation to webm format ?

    19 septembre 2017, par Nikhil Mahajan

    I am using this example code as a test case : https://matplotlib.org/examples/animation/moviewriter.html

    In this code, they use FFMPEG to write the matplotlib animation to an .mp4 video file. Is it possible to write to a .webm format ?

    But I am not sure how to go about doing this.

  • arm : Use .data.rel.ro for const data with relocations

    16 novembre 2014, par Martin Storsjö
    arm : Use .data.rel.ro for const data with relocations
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
    • [DBH] libavcodec/arm/fft_fixed_neon.S
    • [DBH] libavcodec/arm/fft_neon.S
    • [DBH] libavcodec/arm/fft_vfp.S
    • [DBH] libavutil/arm/asm.S
  • try to generate a frame from a video using FFmpeg command and try to save all frame in a upload directory

    15 juillet 2022, par Rahul singh
    import ffmpeg&#xA;&#xA;import os&#xA;&#xA;for video in os.listdir(video_path):&#xA;&#xA;     if video.endswith(".mp4"):&#xA;&#xA;          if not os.path.exists(&#x27;upload&#x27;):&#xA;&#xA;                 os.makedirs(&#x27;upload&#x27;)&#xA;                 os.chdir(&#x27;upload&#x27;)&#xA;                 print(os.getcwd())&#xA;                 command = f&#x27;ffmpeg -i {video} frame_%0d.jpg&#x27;&#xA;                 os.system(command)&#xA;

    &#xA;

    i am trying to generate frame using ffmpeg command and save frame in upload directory but not able to do it. can anyone help me with this. It will be great help. Thanks in advance.

    &#xA;