Recherche avancée

Médias (91)

Autres articles (32)

  • Installation en mode ferme

    4 février 2011, par

    Le 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, par

    Multilang 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, par

    Pour 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 Gardner

    I'm working on building an API using pyffmpeg and pytube to download YouTube videos and convert them to .wav files, synced up with some LED animations. I'm importing pyffmpeg 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):&#xA;  File "<stdin>", line 1, in <module>&#xA;  File "/path/to/venv/lib/python3.11/site-packages/pyffmpeg/__init__.py", line 163, in convert&#xA;    raise Exception(self.error)&#xA;Exception&#xA;</module></stdin>

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

            if &#x27;Output #0&#x27; not in stderr:&#xA;            lines = stderr.splitlines()&#xA;            if len(lines) > 0:&#xA;                self.error = lines[-1]&#xA;            else:&#xA;                self.error = ""&#xA;&#xA;            if self.enable_log:&#xA;                self.logger.error(self.error)&#xA;            raise Exception(self.error)&#xA;        else:&#xA;            self.error = &#x27;&#x27;&#xA;            if self.enable_log:&#xA;                self.logger.info(&#x27;Conversion Done&#x27;)&#xA;        return out&#xA;

    &#xA;

    Anyone have any ideas ?

    &#xA;

  • Python ffmpeg kill a fprobe process

    13 novembre 2017, par emanaltal

    I’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 working

    My 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 emanaltal

    I’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 working

    My 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()