
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (52)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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, parPré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 2013Puis-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 (8273)
-
FFmpeg not found for manim installation
19 février 2023, par Jason GraceI 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 ?


-
Merge pull request #3678 from timgates42/bugfix_typo_number
18 septembre 2020, par blueimpMerge pull request #3678 from timgates42/bugfix_typo_number
docs : Fix simple typo, numer -> number
-
Laradock FFMpeg in php-fpm container
21 novembre 2019, par Dean CollinsFollowed the docs to install FFMpeg in laradock. Seems to work fine with the workspace, however following the instructions for php-fpm does not.
At first I thought it was permission thing however when I looked in the container it had not been installed. A manual install and everything works as it should (access binary from php).
Any ideas on how to get Laradock to provision the container with FFmpeg without hacking it each time ?
Thanks !