Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (34)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5717)

  • PySceneDetect FFmpeg Not Available

    14 août 2023, par Dmitriy Pushkarev

    I already installed FFmpeg and this is available in terminal I can convert video and etc, but it's completely not available in PySceneDetect.

    


    pip installed FFmpeg-python and FFmpeg library and FFmpeg itself in system.

    


    PySceneDetect returns :

    


    ffmpeg could not be found on the system. Please install ffmpeg to enable video output support.


    


    I think trouble with path, but can't put path in PySceneDetect. I can use path to binary FFmpeg, only in ffmpeg-python library, like this and it's working

    


    This code working fine :

    


    Here i using only FFmpeg-python library

    


    stream = ffmpeg.input('vi0.mp4')
stream = ffmpeg.filter(stream, 'fps', fps=10, round='up')
stream = ffmpeg.output(stream, 'vi1.mp4')
ffmpeg.run(stream,cmd='./ffmpeg')


    


    But can't it to get work with PySceneDetect

    


    print(scenedetect.video_splitter.is_ffmpeg_available())


    


    return False

    


    split_video_ffmpeg(video_path, scene_list, show_progress=False)


    


    returns "ffmpeg could not be found on the system. Please install ffmpeg to enable video output support."

    


  • qt-faststart : Fix the signedness of variables keeping the ftello return values

    29 octobre 2012, par Michael Niedermayer
    qt-faststart : Fix the signedness of variables keeping the ftello return values
    

    These variables are assigned the return values of ftello, which
    returns an off_t, which is a signed type. On errors, ftello returns
    - 1, thus make sure this error return value can be stored properly.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/qt-faststart.c
  • NaCl with FFmpeg, avformat_open_input return -5 and -1052488119 [duplicate]

    30 juillet 2013, par Jar

    This question is an exact duplicate of :

    I'm trying to port FFmpeg into my NaCl module.

    So far, my module linked ffmpeg and SDL libraries.

    It already can play YUV format video which is directed load into memory and copy into YUVOverlay buffer (it's very easy).

    Now, I want to use ffmpeg to decode video, but when I call the function avformat_open_input it returns -5 when input is URL string, such as rtmp:// or mmsh:// ; it returns -1052488119 when input is file name, such as /saved/tmp (I mount the file system - html5fs).


    There are some questions :

    1. What means of -5 and -1052488119 ?
    2. If file can't open by avformat_open_input, is it possible the input type is from buffer not from file name or url string ?

    If I'm not clearly about my question or description, you can tell me.
    If you are doing the same thing or having the same problem, we can discuss together.

    Thanks,
    Jar