Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (61)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7712)

  • Revision 749e0c7b28 : Revert "Revert "Revert 3 patches from Hangyu to get Chrome to build :"" This rev

    28 juin 2014, par James Zern

    Changed Paths :
     Modify /test/user_priv_test.cc


     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/decoder/vp9_dthread.h


     Modify /vp9/vp9_dx_iface.c



    Revert "Revert "Revert 3 patches from Hangyu to get Chrome to build :""

    This reverts commit b336356198b8ada50fbb59f04f11cefceaf5ff95.

    This causes a hang in :
    VP9/InvalidFileTest.ReturnCode/3

    the change to test/user_priv_test.cc remains with a minor update

    Change-Id : I4a8a272ca37ea329b0f413f0b1cd827a238bd9fd

  • Php ffmpeg download and installation win7 64 bit wamp [on hold]

    21 mai 2014, par user3560703

    Since i cannot find this whole google and inernet combined i asked a Question here !

    here is ffmpeg for php5.4 FFMPEG php5.4

    What i want is for win64 bit version me using **wamp.

    Any one can help me uploading the ffmpeg for win764bit php5.4 ?

    Thanks in advance !

    got the files Question closed anyone requiring ffmpeg for php5.4 win7 64bit take a look HERE

  • How to download video by url using ffmpeg-python

    22 novembre 2022, par puf

    I'm trying to write script that will be downloading part of youtube video by url. I'm using ffmpeg + ffmpeg-python library.

    


    I have terminal command that I want put to python code.

    


    ffmpeg -i "url_to_download" -ss 00:00:15 -t 00:00:25 -c:v copy -c:a copy "demo.mp4"


    


    url_to_download is an youtube stream url that I get like in an answer to another question https://stackoverflow.com/a/57134397/6583203

    


    I started writing script

    


    import ffmpeg

FROM = "00:00:15"
TO = "00:00:25"
TARGET = "demo.mp4"

ffmpeg.input(url_to_download, ss=FROM, t=TO)


    


    But I don't know how to pass parameters -c:v copy -c:a copy "demo.mp4" to ffmpeg.input

    


    Do not advice me to use subprocess. I have the same error like in a following question : Python ffmpeg won’t accept path, why ?