Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (69)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (10553)

  • FFMPEG : Unable to find suitable output format for rtsp ://

    19 juillet 2017, par Hakeem El Bakka-lee

    I have a WebRTC server, streaming to a WebBrowser front-end.

    I feed my WebRtc Server a video and/or audio flux through FFMPEG.

    The problem is that I just can’t seem to make FFMPEG stream something in rtp/rtsp.

    Here is my line, wich comes from the FFMPEG website :

    ffmpeg -re -i rm.mp4 -f rtsp -muxdelay 0.1 rtsp://127.0.0.1/live.sdp

    I got erros like :

    Connection to tcp://127.0.0.1:554?timeout=0 failed: Connection refused
    Could not write header for output file #0 (incorrect codec parameters ?): Connection refused

    I modified the ffserver.conf file but nothing changed.

    Has anybody experienced the same problem ?

  • The system cannot find the file specified with ffmpeg

    15 mai 2024, par Samhita vempatti

    In the process of using the ffmpeg module to edit video files i used the subprocess module

    



    The code is as follows :

    



    #trim bit

import subprocess
import os
seconds = "4"
mypath=os.path.abspath('trial.mp4')
subprocess.call(['ffmpeg', '-i',mypath, '-ss', seconds, 'trimmed.mp4'])


    



    Error message :

    



    Traceback (most recent call last):&#xA;  File "C:\moviepy-master\resizer.py", line 29, in <module>&#xA;    subprocess.call([&#x27;ffmpeg&#x27;, &#x27;-i&#x27;,mypath, &#x27;-ss&#x27;, seconds, &#x27;trimmed.mp4&#x27;])&#xA;  File "C:\Python27\lib\subprocess.py", line 168, in call&#xA;    return Popen(*popenargs, **kwargs).wait()&#xA;  File "C:\Python27\lib\subprocess.py", line 390, in __init__&#xA;    errread, errwrite)&#xA;  File "C:\Python27\lib\subprocess.py", line 640, in _execute_child&#xA;    startupinfo)&#xA;WindowsError: [Error 2] The system cannot find the file specified&#xA;</module>

    &#xA;&#xA;

    After looking up similar problems i understood that the module is unable to pick the video file because it needs its path, so i took the absolute path. But in spite of that the error still shows up.&#xA;The module where this code was saved and the video file trial.mp4 are in the same folder.

    &#xA;

  • MoviePy Error : The system cannot find the file specified

    4 juillet 2017, par JohnSmithy1266

    I’m getting the error in the title when trying to run the example code below on Windows 10/Python 3.6.1/Sublime Text Editor 3. I made sure to set my MAGICK_HOME environment variable to point to where I manually installed ImageMagick. I made sure to only have 1 version of ImageMagick installed. I made sure FFMPEG, Numpy, imageio, Decorator, and tqdm were all installed.

    Yes, the file "vidclip.mp4" exists. The desired behavior here is to simply clip the video and add text to the center as per the example on the github page, i.e. to simply run the code successfully.

    Does anyone know what might be wrong ?

    Example code from github :

    from moviepy.editor import *

    video = VideoFileClip("vidclip.mp4").subclip(7,64)

    # Make the text. Many more options are available.
    txt_clip = ( TextClip("Ken Block who?",fontsize=70,color='white')
                .set_position('center')
                .set_duration(10) )

    result = CompositeVideoClip([video, txt_clip]) # Overlay text on video
    result.write_videofile("vidclip_edited.webm",fps=25) # Many options...

    The full error trace :

    Traceback (most recent call last):
     File "C:\Users\av\AppData\Local\Programs\Python\Python36\lib\site-packages\moviepy\video\VideoClip.py", line 1220, in __init__
       subprocess_call(cmd, verbose=False )
     File "C:\Users\av\AppData\Local\Programs\Python\Python36\lib\site-packages\moviepy\tools.py", line 42, in subprocess_call
       proc = sp.Popen(cmd, **popen_params)
     File "C:\Users\av\AppData\Local\Programs\Python\Python36\lib\subprocess.py", line 707, in __init__
       restore_signals, start_new_session)
     File "C:\Users\av\AppData\Local\Programs\Python\Python36\lib\subprocess.py", line 990, in _execute_child
       startupinfo)
    FileNotFoundError: [WinError 2] The system cannot find the file specified

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
     File "C:\Users\av\Desktop\Desktop\Projects\Youtube\blender\test\testMoviePy.py", line 6, in <module>
       txt_clip = ( TextClip("Ken Block who?",fontsize=70,color='white')
     File "C:\Users\av\AppData\Local\Programs\Python\Python36\lib\site-packages\moviepy\video\VideoClip.py", line 1229, in __init__
       raise IOError(error)
    OSError: MoviePy Error: creation of None failed because of the following error:

    [WinError 2] The system cannot find the file specified.

    .This error can be due to the fact that ImageMagick is not installed on your computer, or (for Windows users) that you didn't specify the path to the ImageMagick binary in file conf.py, or.that the path you specified is incorrect
    </module>