- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide
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
| // The MIT License(MIT) | |
| // | |
| // Copyright(c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| // this software and associated documentation files(the "Software"), to deal in | |
| // the Software without restriction, including without limitation the rights to | |
| // use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of | |
| // the Software, and to permit persons to whom the Software is furnished to do so, | |
| // subject to the following conditions : |
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
| @setlocal | |
| @echo off | |
| set /p "URL=Enter URL here: " | |
| set /p "START_TIME=Enter START_TIME here: " | |
| set /p "END_TIME=Enter END_TIME here: " | |
| set /p "END_FILENAME=Enter END_FILENAME here: " | |
| set "VIDEO_URL= " |
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 | |
| color 0A | |
| ECHO ====================================================================================================================== | |
| ECHO. | |
| SET /P vURL="[Enter video URL] " | |
| ECHO. | |
| SET /P StartTime="[Enter Start Time] " | |
| SET /P EndTime="[Enter End Time] " | |
| ECHO. | |
| ECHO ====================================================================================================================== |
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
| #!/data/data/com.termux/files/usr/bin/bash | |
| echo "Enter URL here:" | |
| read URL | |
| echo "Enter START_TIME here:" | |
| read START_TIME | |
| echo "Enter END_TIME here:" | |
| read END_TIME |
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
| #!/data/data/com.termux/files/usr/bin/bash | |
| echo "Enter URL here:" | |
| read URL | |
| echo "Enter START_TIME here:" | |
| read START_TIME | |
| echo "Enter END_TIME here:" | |
| read END_TIME |
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
| #!/data/data/com.termux/files/usr/bin/bash | |
| echo "Enter URL here:" | |
| read URL | |
| echo "Enter START_TIME here:" | |
| read START_TIME | |
| echo "Enter END_TIME here:" | |
| read END_TIME |
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
| --Very simple mpv script that disables video on YouTube videos | |
| --and instead shows the video thumbnail. | |
| --Because there is no toggle for this I recommend only calling | |
| --the script via the "--scripts-append" flag unless you always | |
| --want to just see video thumbnails. | |
| --Set this to 1 if you use Windows | |
| windows = 0 | |
| function thumbnail_as_cover() |
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 | |
| clip() { | |
| YOUTUBE_URL="${1}" | |
| START_TIME="${2}" | |
| END_TIME="${3}" | |
| END_FILENAME="${4}" | |
| AUDIO_URL="$(yt-dlp "${YOUTUBE_URL}" -g -f bestaudio)" | |
| VIDEO_URL="$(yt-dlp "${YOUTUBE_URL}" -g -f bestvideo)" | |
| ffmpeg \ |
Hyper-V in Windows 10 and Windows 11 allows running Virtual Machine. It is supported only in Pro, Enterprise and Education Edition of Windows 10 and Windows 11 by default. But this guide will show you how to enable it in Home Editions of Windows 10 and Windows 11.
- Search for
Command Promptin Windows Start Menu and open it. - Type
systeminfoand press Enter. Wait for the process to finish - Once the results appear, search for the
Hyper-V Requirementssection which is usually the last one.
- If it says
A hypervisor has been detected. Features required for Hyper-V will not be displayed.that means Hyper-V is already enabled and there is no reason following this guide anymore.
- If it says
- Otherwise, check for
Virtualization Enabled in Firmware:.
NewerOlder