Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (105)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10359)

  • Pass ffmpeg stream through opencv-python script

    18 février 2019, par luddite478

    Please tell me how to pass my stream from ffmepg through python script, get response back, and pass it to ffmpeg again ?
    For now i have something like this :

     FFMPEG_SCRIPT = [ "ffmpeg",  '-i', 'fifo',  '-pix_fmt', 'bgr24',  '
       -vcodec', 'rawvideo', '-an', '-sn', '-f', 'mpegts', '-' ]
       pipe = sp.Popen(FFMPEG_SCRIPT, stdout = sp.PIPE, bufsize=4096)

    After this i’m just reading video-frames in while loop

    while True:
        frame = pipe.stdout.read(480*720*3)
        sys.stdout.write(frame)

    So how can i access the frame after i wrote it to stdout at the last line ?


    UPD

    Ok, saving audio-track in the stream wasn’t easy. After some bash magic i was able to receive some decent output. Warning : this script is very far from ideal.

  • How can I pass a variable containing spaces as an argument in a bash script ?

    8 décembre 2017, par Bill D

    I am trying to pass a variable containing a filename with spaces as an argument to ffmpeg in a bash script, and I am not having success.

    varToPass="file name with spaces.mp4"

    ffmpeg -i "$varToPass" -ss "${array[j]}" -t "${anotherArray[j]}" output.mp4

    I have tried passing the argument as "$varToPass" with double quotes as suggested by this answer and others, but I’m still unable to get it to work.

    I’ve also tried putting escape characters in the string like this :

    varToPass=`echo $varToPass | sed 's/ /\ /'`

    But still no luck.

    Any suggestions for how this can be done ?

  • Pass option or argument in ffmpeg

    20 décembre 2015, par babak

    I’m doing some modification into af_silencedetect.c file, one of the ffmpeg many filters and I want to pass a unique option in when I run ffmpeg. I need ffmpeg to save silence that it found and put them in different log file with unique ID that I’m passing, because I’m running multiple ffmpegs at the same time. Here is what I try to do :

    ffmpeg -i audio.mp3 -vn -af silencedetect=n=-50dB:d=1:id=01 -f mp3 out.mp3

    How to do that ? How to create new parameter and pass it in and grep it inside ffmpeg ?