
Recherche avancée
Autres articles (17)
-
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 -
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 (...)
-
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (4003)
-
How to configure —enable-libfreetype for FFMPEG on Windows 10 ?
14 août 2021, par LakshayI want to customize/remove timestamp from my FFMPEG recording.


I understand that I need to use the flag
:filter-v
or-vf
in my command.

On googling, it seems that I need to use the flag —enable-libfreetype, but the command

ffmpeg --enable-libfreetype ...
orffmpeg -enable-libfreetype ...


returns this error


Unrecognized option '-enable-libfreetype'.
Error splitting the argument list: Option not found 



Some answers on SO suggest to "compile" with the option —enable-libfreetype.


How to "compile" the libfreetype option ? I am using Windows 10.


I tried finding online for a solution but couldn't find anything.


-
youtube-dl download one minute per every 5 minutes (on a twitch video, but i have the local file saved too if easier)
18 mai 2016, par babadoctorI would like to do what the title says
This is a ffmpeg command to download from a specific time in a video, offline or online.
ffmpeg -ss (stop time) -i (direct video link) -t (start time) -c:v copy -c:a copy (title.mp4)
I am going to be downloading this on OSX.
I dont care what the title is.I think* there is a bash command that allows me to change the timings in this command up by a specific amount (+300 seconds per, the counter for start and stop time is in raw seconds)
So, bash script that runs that command but increases the start and stop times incrementally by 300 (the stop timing being 60+ seconds ahead), downloads, then repeats.
-
AttributeError : module 'ffmpeg' has no attribute 'load'
23 avril 2023, par az-purplepenI'm having difficulty with ffmpeg. I've installed it properly (I think) but still get AttributeErrors.


I used the online guide (https://ffmpeg.org/download.html), and doing
pip install ffmpeg-python
instead ofpip install ffmpeg
. I've verified the installation withpip show
. I've also made sure to not name my filesffmpeg.py
.

However, when I try running the following commands in terminal, I get an Attribute Error. Any tips ? I've seen this question pop up before, but none of the tips have worked.


>>> import ffmpeg
>>> ffmpeg.load('cover.wav')
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
AttributeError: module 'ffmpeg' has no attribute 'load
</module></stdin>