
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (12131)
-
Automatically assign a name to a file being saved
13 janvier 2017, par J.D AlfordI"m using ffmpeg to create video clips. I want to automate the process and save the clips without manually giving names to each file being saved. Here is the code I have. It will create and save the clip but only with an extension and not a name.
@echo off
cd /d % dp0set /p place="Enter location : " %=%
set /p time="Enter time : " %=%
for /F %%a in (’dir /b *.mp4’) do set FileName=%% na
ffmpeg -i "%place%" -ss %time% -codec copy -t 10 %FileName%.mp4
I’m sure there’s a simple solution but I can’t figure it out. Any help would be appreciated
-
Can I use a config file within an embedded youtube-dl code ?
10 mai 2017, par Stack JohanRight now, I’m having issues with ffmpeg not being recognized. I have the ffmpeg files stored in a folder, and I normally call ffmpeg using —ffmpeg-location.
I don’t know how to do that within Python code, and I would prefer to use config files to call all the options.
This is what I have right now :
from __future__ import unicode_literals
import youtube_dl
ydl_opts = {
'format': 'bestaudio/best',
'outtmpl': u'%(id)s.%(ext)s',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}]
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://youtu.be/Y_n0UwQMz5o']) -
Requested MovieWriter (ffmpeg) not available
17 juillet 2021, par eulerIm trying to make animations in jupyter notebook, but the system needs the package ffmpeg for making mp4 arxives. What happens is that I'm working in a virtual space, and I don't have permission to make
sudo install ffmpeg
instead of this I think the only alternative that I have ispip install ffmpeg
. But when I make this, the error stills the same.

I also tried to force the location of the ffmpeg package but also doesn't work.


plt.rcParams['animation.ffmpeg_path'] = ".local/lib/python3.7/site-packages/ffmpeg"


If someone have any solution or intuition to solve the problem in this case it will be very helpful.