Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (50)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • 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 (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (10800)

  • How to convert ffmpeg complex_filter to ffmpeg-python

    6 août 2022, par v78

    I am trying to learn to convert ffmpeg command line background blur filter to ffmpeg-python format.
'-lavfi' and [0:v]scale=ih*16/9:-1,boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,crop=h=iw*9/16

    



    Basic examples from https://github.com/kkroening/ffmpeg-python are good to learn simple tricks, but How to learn to the full transformation syntax ?

    


  • Python - OpenCV - VideoCapture

    6 octobre 2016, par Sina Dabiri

    I am using Python 2.7.12 and OpenCV 2.4.13. I am trying the get video frames using cv2.VideoCapture(). But it doesn’t work. I already added C :\OpenCV\3rdparty\sources\ffmpeg
    to the Windows PATH environment variable and copied all files from C :\OpenCV\3rdparty\sources\ffmpeg to C :\Python27\ by renaming opencv_ffmpeg.dll and opencv_ffmpeg_64.dll to opencv_ffmpeg2413.dll and opencv_ffmpeg2413_64.dll in turn. But still doesn’t work. Here is my code :

    cap = cv2.VideoCapture("Video1.mp4")

    cap.open("Video1.mp4")

    print cap.isOpened()

    I receive False. I also used the path instead of Video1.mp4, but again doesnt work. Any suggestion is appreciated.

  • python ffmpeg and pydub on windows

    11 mars 2016, par Yonatan Kreiner

    I am trying to import the ffmpeg and pydub to my python script.
    I downloaded the ffmpeg for windows from https://ffmpeg.zeranoe.com/builds/
    and put the bin folder in the system path.
    I can use it from the CMD but I need to import it to the script
    for the pydub library to work.
    I had tried to execute

    AudioSegment.from_mp3("something.mp3").export("somethingElse.wav", format="wav")

    without importing it but It throws FileNotFoundException.
    Any suggestions ?