Skip to content
View kyanbasu's full-sized avatar
🍍
prob not banana
🍍
prob not banana

Block or report kyanbasu

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
kyanbasu/README.md

Header

👋 Welcome to my profile, I’m @kyanbasu aka bnm

  • 💻 Student at Wrocław University of Science and Technology
  • 🥂 Interested in Game Development, XR, Web Development, Servers and Linux
  • 🎈 Looking forward to collaborate on some projects.
  • 📧 How to reach me? 0bnm on Discord.


Github Stats

Pinned Loading

  1. basic-discordjs-bot basic-discordjs-bot Public

    JavaScript

  2. pwr-typst pwr-typst Public

    Typst utilities and also Typst templates etc. for PWr (Wrocław University of Science and Technology)

    HTML

  3. adding audio tracks and subtitles to... adding audio tracks and subtitles to video
    1
    to begin with, change subtitle format to utf-8, because other could break
    2
    
                  
    3
    ffmpeg -i in.mp4 -i in.mp3 -i in.srt -c copy -c:s mov_text -map 0 -map 1:a -map 2:s out.mp4
    4
    
                  
    5
    also to encode with hevc nvenc with keeping all tracks (audio, subtitles)
  4. simple script to download list of fi... simple script to download list of files from google drive
    1
    import gdown
    2
    import os.path
    3
    
                  
    4
    INPUT_LIST = 'input.txt' # list of files in format <name>\t<google drive link>\n
    5
    OUTPUT_PATH = 'some/path/'