cleanup and trying to catch frames

This commit is contained in:
efim
2024-08-21 11:39:57 +00:00
parent 6465818d3b
commit acd41dd67e
6 changed files with 351 additions and 3 deletions

View File

@@ -21,3 +21,13 @@
;; yay, this works. good.
;; this https://www.crategus.com/books/cl-gtk/gtk-tutorial.html#idp3
;; and how could i integrate with out node of pipewire?
(defun start-ffmpeg ()
(uiop:run-program '("ffmpeg" "-f" "pipewire" "-i" "out-node" "-f" "rawvideo" "-pix_fmt" "rgb24" "-")
:output :lines
:error-output :lines
:input :interactive
:wait nil
))