Recherche avancée

Médias (91)

Autres articles (41)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7627)

  • ffmpeg bash script to generate thumbnails for all videos in a folder

    17 novembre 2017, par smokeyone

    I found this bash script via google and would like to modify it slightly to generate jpg thumbnails from a desktop folder call indie. All my mts files are named by their exact time taken and ffmpeg is installed.

    This is the original script :

    for f in *.mov; do
       ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mov}.jpg";
    done

    I changed it to this :

    for f in Desktop/indie/*.mts; do
       ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mts}.jpg";
    done

    I am hoping someone can tell me where I have gone wrong (my terminal output just says no such file).

    Thanks

  • How to make ffmpeg use GPU in python code ?

    11 mars 2023, par Alex

    I have code like this

    


    import ffmpeg

input_video = ffmpeg.input('video.mp4')

input_audio = ffmpeg.input('audio.mp3')

ffmpeg.concat(input_video, input_audio, v=1, a=1).output('D:/video.mp4').run()


    


    I found commands for terminal but didn't figure out how to make ffmpeg use GPU in Python code. Where and how do I pass the parameters '-hwaccel cuvid' ?
I using ffmpeg-python 0.2.0 from PyPI(pypi.org/project/ffmpeg-python)
I will be very grateful for your help

    


  • How to restart the Ip Camera through ffmpeg or gstreamer ?

    11 avril 2022, par HARSH BHATNAGAR

    I am dealing with 550 IP camera , in which camera randomly power off due to power supply issue .
I need to restart the camera when the camera is online .

    


    I have tried the IP ping concept , ffmpeg grabbing frame concept but the issue when we are integrating 550 camera IP ping concept it gives the False Positive and not able to restart the all camera whereas ffmpeg grabbing frame concept sometimes ffmpeg stuck in the terminal .
    
All testing code written in python language .
[ Note : i can't used the opencv for 550 camera ]
Please give me the suggestion how to deal with the problem .