Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (69)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (12952)

  • Merge pull request #3678 from timgates42/bugfix_typo_number

    18 septembre 2020, par blueimp
    Merge pull request #3678 from timgates42/bugfix_typo_number
    

    docs : Fix simple typo, numer -> number

  • FFmpeg not found for manim installation

    19 février 2023, par Jason Grace

    I was trying to install manim so I ran the following commands in my VScode terminal

    


    >>pip install manim
>>pip install FFmpeg-python


    


    However, when I ran a sample manim program on VScode(copy pasted from the tutorial), I received the following information.

    


    RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work
  warn("Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)


    


    I have tried downloading a pre-compiled ffmpeg from https://ffmpeg.org/download.html#build-windows, but when I downloaded it there was no way to unzip it.
My code below :

    


    from manim import *


class CreateCircle(Scene):
    def construct(self):
        circle = Circle()  # create a circle
        circle.set_fill(PINK, opacity=0.5)  # set the color and transparency
        self.play(Create(circle))  # show the circle on screen


    


    Tutorial/Installation guide link I used :
https://docs.manim.community/en/stable/installation/windows.html#required-dependencies

    


    Please note that I am on a windows 64-bit computer

    


    Can anyone help me install manim or ffmpeg properly ?

    


  • Name ffmpeg generated images using timestamp rather than sequential numbers

    15 décembre 2015, par weotch

    As far as I can tell from the ffmpeg docs, they don’t provide a way to use timestamps in the filename rather than sequential numbers. What they provide allows you to create 0001.jpg, 0002.jpg, 0003.jpg but not 2011-08-01 7:30:00.jpg, 2011-08-01 7:30:01.jpg, 2011-08-01 7:30:02.jpg. Can anyone think of a solution that could take the sequentially named files from ffmpeg and name them using their created time ?