Recherche avancée

Médias (91)

Autres articles (53)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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

Sur d’autres sites (6522)

  • colored TV-Noise with windows

    8 janvier 2024, par LookAndSee

    I have some question to the colored noise at image 2 of the following thread :

    


    Simulating TV noise

    


      

    • how can i get this in windows ? I like a random pattern consisting of red, green, blue, white and black points, like 255:0:0, 0:255:0, 0:0:255, 255:255:0, 0:0:0 and 255:255:255 - no pink, no orange, no cyan ... at the first step.
    • 


    


    but random in all 3 places always delievers (with ceil, floor or round) whole black, or whole white or bw-noise :-(
does it mean, the random(1) per point is 3 times the same in one computing-cycle ?

    


    Any suggestion ?

    


    This is what i tried :

    


    ffmpeg -y -f lavfi -i nullsrc=s=1280x720 -filter_complex "geq=r=(round(random(1)))*255:g=(round(random(1)))*255:b=(round(random(1)))*255;aevalsrc=-2+random(0)" -t 5 output.mkv


    


  • 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 ?

  • Create fake webcam with ffmpeg on Windows ?

    1er juillet 2022, par Brian

    ffmpeg has all kinds of options in it to record video off of a webcam, transcode video, send video up to streaming servers. Is there a way to loop over a file and make it look like a webcam ?

    



    I found this for Linux :
https://gist.github.com/zburgermeiszter/42b651a11f17578d9787

    



    I've search around a lot to try to find something for Windows, but have not yet found anything.