
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (51)
-
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 (7792)
-
ffmpeg/repo : Add dot-folders in the repository root to .gitignore
13 avril, par softworkz -
avfilter/af_anequalizer : Avoid loss of precision when calculating nyquist frequency
12 février 2016, par Michael Niedermayer -
Subprocess not working when called in atom
22 août 2019, par jan1892I am running python3.6 in Atom using the package ’script’ on Ubuntu 18.04.
I am trying to cut videos using ffpb (basically ffmpeg with a progress bar instead of verbose).
The following code gives the error : ’FileNotFoundError : [Errno 2] No such file or directory : ’ffpb’ : ’ffpb’
import subprocess
cmds = ['ffpb', '-i', 'input.mp4', 'output.mp4']
subprocess.call(cmds)- The command ’ffpb -i input.mp4 output.mp4’ works in the terminal
- The script works when I call it with python3 in the terminal
- The script works in atom if I replace ffpb by ffmpeg
- I installed ffpb using pip3 install —user ffpb
- I never had problems like this running code in atom before.
Thanks in advance for any help.