
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (32)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
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. -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (3139)
-
Getting an error from pyffmpeg when running as a submodule
3 décembre 2023, par Devin GardnerI'm working on building an API using
pyffmpeg
andpytube
to download YouTube videos and convert them to .wav files, synced up with some LED animations. I'm importingpyffmpeg
in a submodule, which is then imported by yet another submodule. I'm getting the following error when I run the script (both from my entire package, and in the Python shell directly, and on two different devices with two different OSes) :

This is the error I get from the shell on my MacBook :


Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
 File "/path/to/venv/lib/python3.11/site-packages/pyffmpeg/__init__.py", line 163, in convert
 raise Exception(self.error)
Exception
</module></stdin>


And this is the error I get on my Raspberry Pi when I run the full program :


File "/path/to/venv/lib/python3.11/site-packages/pyffmpeg/__init__.py", line 154, in convert
 if 'Output #0' not in stderr:
 ^^^^^^
UnboundLocalError: cannot access local variable 'stderr' where it is not associated with a value



I've tracked down the relevant code in the
__init__.py
file ofpyffmpeg
, but I'm not sure how to fix the problem.

if 'Output #0' not in stderr:
 lines = stderr.splitlines()
 if len(lines) > 0:
 self.error = lines[-1]
 else:
 self.error = ""

 if self.enable_log:
 self.logger.error(self.error)
 raise Exception(self.error)
 else:
 self.error = ''
 if self.enable_log:
 self.logger.info('Conversion Done')
 return out



Anyone have any ideas ?


-
Python ffmpeg kill a fprobe process
13 novembre 2017, par emanaltalI’m using ffmpeg with python & ubuntu, im going over a loop of url stream files & im sending fprobe command first to read , if works fine i open another subprocess to take snapshot of stream.
The issue is now the system hang because so many processes. I tried to kill the process using
process.kill()
and by specifying process PID but still not workingMy code is :
command = 'ffprobe -v error -show_entries stream=width,height %s'%(url)
process = subprocess.Popen(shlex.split(command),shell=False,stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print process.pid
output = process.communicate()
for i in output:
if i !='':
if '403 Forbidden' in i:
#### update database
elif '401 Unauthorized' in i:
#### update database
else:
screenshot = screenshots_path+ str(time.strftime("%Y%m%d%H%M%S",time.localtime()))
play_command = """ffmpeg -i """+m3u_url+""" -vframes 1 -q:v 1 -vf drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf:x=(w-text_w)/2:y=(h-text_h-line_h): fontsize=24 :fontcolor=white@1.0 : text= \\'"""+str(m3u_url)+"""'" %s.jpg -hide_banner"""%(screenshot)
process = subprocess.Popen(shlex.split(play_command),shell=False,stdout=subprocess.PIPE, stderr=subprocess.PIPE)
process.kill() -
Python ffmpeg kill a ffprobe process
14 novembre 2017, par emanaltalI’m using ffmpeg with python & ubuntu, im going over a loop of url stream files & I’m sending ffprobe command first to read , if works fine, I will open another subprocess to take snapshot of stream.
The issue is now the system hang because so many processes. I tried to kill the process using
process.kill()
and by specifying process PID but still not workingMy code is :
command = 'ffprobe -v error -show_entries stream=width,height %s'%(url)
process = subprocess.Popen(shlex.split(command),shell=False,stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print process.pid
output = process.communicate()
for i in output:
if i !='':
if '403 Forbidden' in i:
#### update database
elif '401 Unauthorized' in i:
#### update database
else:
screenshot = screenshots_path+ str(time.strftime("%Y%m%d%H%M%S",time.localtime()))
play_command = """ffmpeg -i """+m3u_url+""" -vframes 1 -q:v 1 -vf drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf:x=(w-text_w)/2:y=(h-text_h-line_h): fontsize=24 :fontcolor=white@1.0 : text= \\'"""+str(m3u_url)+"""'" %s.jpg -hide_banner"""%(screenshot)
process = subprocess.Popen(shlex.split(play_command),shell=False,stdout=subprocess.PIPE, stderr=subprocess.PIPE)
process.kill()