This file contains hidden or 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
# Copyright (c) 1993-2009 Microsoft Corp. | |
# | |
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows. | |
# | |
# This file contains the mappings of IP addresses to host names. Each | |
# entry should be kept on an individual line. The IP address should | |
# be placed in the first column followed by the corresponding host name. | |
# The IP address and the host name should be separated by at least one | |
# space. | |
# |
This file contains hidden or 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 | |
# Check if at least one file is provided | |
if [ "$#" -eq 0 ]; then | |
echo "No files provided. Drag and drop video files onto this script." | |
exit 1 | |
fi | |
# Temporary file to store crop parameters | |
TEMP_FILE=$(mktemp) |
This file contains hidden or 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 -i in.mp4 -c:v libx264 -vf scale="192:144" -b:v 50k -c:a libopus -ac 1 -ar 16000 -b:a 8K out.mp4 |
This file contains hidden or 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
[MIN_ENGINE_VER] | |
1 | |
[PACKAGE] | |
* | |
[MATCH_REPLACE] | |
TARGET: | |
AndroidManifest.xml | |
MATCH: | |
<meta-data.*?analytics.*?/> | |
REGEX: |
This file contains hidden or 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
@import url(//fonts.googleapis.com/css2?family=Karla:wght@400;500;600;700&display=swap); | |
@import url(//raw.githubusercontent.com/KrstlSkll69/vc-snippets/main/OtherStuff/hideGlobalDiscovery.css); | |
@import url(//ukriu.github.io/cssCord/Other/noDistractions.css); | |
/* Includes variables */ | |
:root { | |
/*--server-unread-colour: 255, 255, 255; | |
--server-hover-colour: 255, 255, 255; | |
--server-selected-colour: var(--accent, 0, 231, 169); | |
--server-spacing: 16px; |
This file contains hidden or 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
repos=( cli patches integrations ) | |
for i in "${repos[@]}" | |
do | |
curl -s https://api.github.com/repos/revanced/revanced-"$i"/releases/latest \ | |
| grep "browser_download_url" \ | |
| cut -d : -f 2,3 \ | |
| tr -d \" \ | |
| wget -qi - | |
done |
This file contains hidden or 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
@echo off | |
:again | |
set /P start="Start: " | |
set /P end="End: " | |
set /P bit="Bitrate: " | |
set /P max="Maxrate: " | |
ffmpeg ^ | |
-ss %start% ^ |
This file contains hidden or 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
@echo off | |
:again | |
ffmpeg ^ | |
-i "%~1" ^ | |
"%~p1%~n1.srt" | |
if NOT ["%errorlevel%"]==["0"] goto:error | |
echo [92m%~n1 Done![0m | |
shift |
This file contains hidden or 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
no-csp-reports: * true | |
* * 3p block | |
* * 3p-frame block | |
* * 3p-script block | |
* cdn.cloudflare.net * noop | |
* cloudflare.com * noop | |
* cloudfront.net * noop | |
* gstatic.com * noop | |
* hcaptcha.com * noop | |
* jsdelivr.net * noop |
NewerOlder