Recherche avancée

Médias (91)

Autres articles (74)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (4596)

  • Send inputs to a process (ffmpeg) using python

    10 mai 2023, par Noddy

    I am trying to program a custom screen recording functionality, but I have problems sending input to a process.

    


    To achieve this I use ffmpeg. The idea is that I have two scripts A and B

    


    A : Begin recording - create a ffmpeg subprocess that records the screen and writes the process id (pid) to a file

    


    B : Stop the recording - Read the pid from the file and send a 'q' input to the process to stop the recording

    


    This is my code :

    


    A :

    


    import shlex
import subprocess
import time
import datetime

# Variables
success = True
flowName = "workflow1"

# Get current date and time
now = datetime.datetime.now()

formatted_date = now.strftime("%Y-%m-%d %H:%M:%S")

folderDestination = f"C:\\Users\\MadPe\\Desktop\\pipRec\\workFlows\\{flowName}\\"

formatted_date = formatted_date.replace(":",".").replace(" ","_")

fileName = folderDestination + formatted_date + ".mp4"

ffmpegPath = r"C:\Users\MadPe\Desktop\pipRec\ffmpeg\bin\ffmpeg.exe"

command = shlex.split(f'"{ffmpegPath}" -f gdigrab -framerate 30 -offset_x 0 -offset_y 0 -video_size 1920x1080 -i desktop -y "{fileName}"')
process = subprocess.Popen(command, stdin=subprocess.PIPE)

pid = process.pid
startTime = time.time()

with open("filename.txt", "w") as file:
    file.write(str(pid))

#process.stdin.write(b'q\n') #-- this is how I stop the recording
#process.stdin.flush()       #-- but I want to do this from another script


    


    B :

    


    import psutil

# Stop recording and kill Process
with open("filename.txt", "r") as f:
    pid = int(f.read().strip())

if psutil.pid_exists(pid):
    process = psutil.Process(pid)
    process.stdin.write(b'q\n')
    process.stdin.flush()
else:
    print(f"Process with PID {pid} is not running.")


    


    however, when I try to stop the running process I get this error :

    


    Error Message

    


    I hope some of you may be able to spot what I am doing wrong.
also if I comment in the last two lines in A it will make the recording stop, but I want to be able to do this from running B

    


    demo : https://www.veed.io/view/ab4ef053-bba9-43f9-85c5-6ca18204ea37?sharingWidget=true&panel=share

    


  • avcodec/version : bump micro after the previous change

    13 février, par James Almer
    avcodec/version : bump micro after the previous change
    

    Useful to know if a given library build has the flush() callback or not.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/version.h
  • Merge commit ’8ad5124b7ecf7f727724e270a7b4bb8c7bcbf6a4’

    11 novembre 2015, par Hendrik Leppkes
    Merge commit ’8ad5124b7ecf7f727724e270a7b4bb8c7bcbf6a4’
    

    * commit ’8ad5124b7ecf7f727724e270a7b4bb8c7bcbf6a4’ :
    movenc : Automatically flush after writing the initial moov

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavformat/movenc.c