Skip to content

Instantly share code, notes, and snippets.

View devasheeshG's full-sized avatar
🏠
In College

Devasheesh Mishra devasheeshG

🏠
In College
View GitHub Profile
@devasheeshG
devasheeshG / ffmpeg_compile_m3u8_playlist_to_mp4
Last active February 18, 2024 15:22
merge a .m3u8 playlist file to a .mp4 video with support of encrypted .ts files using ,enc key in .m3u8 file. Mainly used when compiling downoaded lectures.
ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i master_720.m3u8 -c copy out.mp4
# Create ssh pub-private keys (also compatable with github ssh auth)
ssh-keygen -t rsa -b 4096 -C "[email protected]"
ssh-keygen -t ed25519 -C "[email protected]"
# Uploading your public key with a Linux or macOS client
ssh-copy-id [email protected]
ssh-copy-id [email protected]
# Uploading your public key with a Windows client
cat .ssh/id_rsa.pub | ssh [email protected] 'cat >> ~/.ssh/authorized_keys'
#!/bin/bash
# Prompt for the m3u8 file link
read -p "Enter the m3u8 file link: " m3u8_link
# Prompt for the output file name without extension
read -p "Enter the output file name (without extension): " file_name
# Append the .mp4 extension to the file name
output_file="${file_name}.mp4"
#!/bin/bash
# Prompt for the segment link
read -p "Enter the segment link of the video: " segment_link
# Extract the base URL from the segment link
base_url=$(dirname "$segment_link")
# Construct the m3u8 link by appending 'master.m3u8' to the base URL
m3u8_link="${base_url}/master.m3u8"
@devasheeshG
devasheeshG / gist:91b9b56ef2ed3d533163b192d7ef2155
Created December 20, 2024 18:18
Proxmox on raspberrypi 5
flash pi5-64bit-lite OS
goto bootfs/config.txt
add this inside `[all]` key
```
usb_max_current_enable=1
```
ssh in pi and run theese commands
const fetch = require('node-fetch');
const crypto = require('crypto');
const API_URL = "https://returnyoutubedislikeapi.com";
const VIDEO_ID = "xQrx8pqsWPU";
function countLeadingZeroes(uInt8View, limit) {
let zeroes = 0;
let value = 0;
for (let i = 0; i < uInt8View.length; i++) {