This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i master_720.m3u8 -c copy out.mp4 |