1
1
mirror of https://github.com/neosubhamoy/pytubepp-helper.git synced 2026-02-04 19:32:21 +05:30

(first): initial commit

This commit is contained in:
2024-08-26 01:08:37 +05:30
Unverified
commit 1368f07bfe
60 changed files with 9513 additions and 0 deletions

32
src/types.ts Normal file
View File

@@ -0,0 +1,32 @@
export interface InstalledPrograms {
python: {
installed: boolean;
version: string | null;
};
ffmpeg: {
installed: boolean;
version: string | null;
};
pytubefix: {
installed: boolean
version: string | null;
};
pytubepp: {
installed: boolean;
version: string | null;
};
}
export interface WebSocketMessage {
url: string;
command: string;
argument: string;
}
export interface Stream {
itag: string;
mime_type: string;
res: string;
fps: string;
vcodec: string;
}