Skip to content

Commit

Permalink
final preps for 1.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
NevermindNilas committed Sep 13, 2024
1 parent dbb393b commit c565ce9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ffmpegSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ def childProcessEncode(
process.stdin.write(numpyArray[dataID].tobytes())


"""
def childProcessDecode(
sharedArray,
processQueue: MPQueue,
numpyShape,
command,
width,
height,
fps,
):
numpyArray = np.frombuffer(sharedArray.get_obj(), dtype=np.uint8).reshape(
(workingFrames, *numpyShape)
Expand All @@ -59,6 +59,7 @@ def childProcessDecode(
if dataID is None:
break
process.stdin.write(numpyArray[dataID].tobytes())
"""


if platform.system() == "Windows":
Expand Down

0 comments on commit c565ce9

Please sign in to comment.