Skip to content
View Suletta-Majo's full-sized avatar
🐍
On python
🐍
On python

Block or report Suletta-Majo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. uhelp uhelp Public

    its terminal dictionary app. Register and display your own cheat sheets and help on console dictionary instead of comprehensive help

    Python

  2. My prototype following the python-ms... My prototype following the python-mss example to capture X11 at 30fps and convert it to PNG images with sequential numbers
    1
    from mss.linux import MSS as mss
    2
    import time
    3
    from PIL import Image
    4
    from pathlib import Path
    5
    
                  
  3. Convert the sequentially numbered pn... Convert the sequentially numbered png files output by screen2images to hls files that hold all segments for testing purposes.
    1
    import subprocess
    2
    
                  
    3
    # Output destination settings
    4
    output_url = "/data/data/com.termux/files/home/storage/documents/Stream/streamone.m3u8" 
    5
    sgfile_path = "/data/data/com.termux/files/home/storage/documents/Stream/segout_%3d.ts"
  4. Test to send images one by one to cv... Test to send images one by one to cv2 and make a video
    1
    from pathlib import Path
    2
    from tqdm import tqdm
    3
    import cv2
    4
    
                  
    5
    # Referenced page (I imitated the single process)
  5. This doesn't work: Code for termux X... This doesn't work: Code for termux X11 screen livestream, in the midst of trial and error and confusion
    1
    import cv2
    2
    import numpy as np
    3
    import time
    4
    from PIL import Image
    5
    from mss.linux import MSS as mss