Skip to content

Instantly share code, notes, and snippets.

View n-ce's full-sized avatar
✴️
Introspecting, Brainstorming, Creating

Animesh n-ce

✴️
Introspecting, Brainstorming, Creating
View GitHub Profile
@n-ce
n-ce / getAV1.py
Last active May 28, 2024 05:24
yt-dlp AV1+Opus Downloader Script
import subprocess
from yt_dlp import YoutubeDL
def get_video_formats(url):
with YoutubeDL({}) as ydl:
info_dict = ydl.extract_info(url, download=False)
formats = info_dict.get('formats', [])
print("{:<10} {:<5} {:>10}".format('Itag', 'Quality', 'Filesize'))
@n-ce
n-ce / config.toml
Created April 13, 2024 17:15
Helix Config & LSP
theme = "onedarker"
[editor]
auto-save = true
[editor.gutters]
layout = ["line-numbers", "diff"]
[editor.gutters.line-numbers]
min-width = 0
@n-ce
n-ce / Eruda_with_Vite.md
Last active May 11, 2024 09:52
Using Eruda with Vite (+ TypeScript)