Recherche avancée

Médias (91)

Autres articles (46)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

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

Sur d’autres sites (4564)

  • avcodec/av1dec : fix check for active sequence header

    25 septembre 2020, par James Almer
    avcodec/av1dec : fix check for active sequence header
    

    We clear the AV1RawSequenceHeader pointer on flush, not the relevant AVBufferRef.

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

    • [DH] libavcodec/av1dec.c
  • Merge commit ’5ea5a24eb70646a9061b85af407fcbb5dd4f89fd’

    27 octobre 2015, par Hendrik Leppkes
    Merge commit ’5ea5a24eb70646a9061b85af407fcbb5dd4f89fd’
    

    * commit ’5ea5a24eb70646a9061b85af407fcbb5dd4f89fd’ :
    movenc : Honor flush requests with delay_moov, when some tracks lack samples

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

    • [DH] libavformat/movenc.c
  • 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.

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    This is my code :

    &#xA;

    A :

    &#xA;

    import shlex&#xA;import subprocess&#xA;import time&#xA;import datetime&#xA;&#xA;# Variables&#xA;success = True&#xA;flowName = "workflow1"&#xA;&#xA;# Get current date and time&#xA;now = datetime.datetime.now()&#xA;&#xA;formatted_date = now.strftime("%Y-%m-%d %H:%M:%S")&#xA;&#xA;folderDestination = f"C:\\Users\\MadPe\\Desktop\\pipRec\\workFlows\\{flowName}\\"&#xA;&#xA;formatted_date = formatted_date.replace(":",".").replace(" ","_")&#xA;&#xA;fileName = folderDestination &#x2B; formatted_date &#x2B; ".mp4"&#xA;&#xA;ffmpegPath = r"C:\Users\MadPe\Desktop\pipRec\ffmpeg\bin\ffmpeg.exe"&#xA;&#xA;command = shlex.split(f&#x27;"{ffmpegPath}" -f gdigrab -framerate 30 -offset_x 0 -offset_y 0 -video_size 1920x1080 -i desktop -y "{fileName}"&#x27;)&#xA;process = subprocess.Popen(command, stdin=subprocess.PIPE)&#xA;&#xA;pid = process.pid&#xA;startTime = time.time()&#xA;&#xA;with open("filename.txt", "w") as file:&#xA;    file.write(str(pid))&#xA;&#xA;#process.stdin.write(b&#x27;q\n&#x27;) #-- this is how I stop the recording&#xA;#process.stdin.flush()       #-- but I want to do this from another script&#xA;

    &#xA;

    B :

    &#xA;

    import psutil&#xA;&#xA;# Stop recording and kill Process&#xA;with open("filename.txt", "r") as f:&#xA;    pid = int(f.read().strip())&#xA;&#xA;if psutil.pid_exists(pid):&#xA;    process = psutil.Process(pid)&#xA;    process.stdin.write(b&#x27;q\n&#x27;)&#xA;    process.stdin.flush()&#xA;else:&#xA;    print(f"Process with PID {pid} is not running.")&#xA;

    &#xA;

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

    &#xA;

    Error Message

    &#xA;

    I hope some of you may be able to spot what I am doing wrong.&#xA;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

    &#xA;

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

    &#xA;