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
| Yoga Android 7.1.1 update notes! | |
| Models: YB1-X90F and YB1-X90L (LTE needs to be added back, not covered here) | |
| seamonkey420 | |
| created: 9/21/2024 | |
| updated: 10/16/2024 | |
| Wait to plug in yoga to pc! | |
| Pre-req work: |
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
| version: "2.1" | |
| services: | |
| wirepod: | |
| container_name: wirepod | |
| image: thecrystalcross/wirepod-server:latest | |
| hostname: escapepod | |
| ports: | |
| - 8080:8080 | |
| labels: | |
| - "traefik.enable=true" |
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
| for %%a in (*.avi) do ffmpeg -fflags +genpts -i "%%a" -c copy -map 0 "%%a.mp4" | |
| pause |
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
| :: Meant to be called by a context menu item or can drag and drop movies on .cmd/.bat file with commands | |
| :: This will use ffmpeg to retain original video and audio streams (ie very fast, full quality retained) of a mkv file | |
| :: and remove all subtitles or just english ones. | |
| :: | |
| :: if you want to use command on its own, use command below and replace filename with file name | |
| :: ffmpeg -i "filename -map 0:v -c:v copy -map 0:a -c:a copy -map 0:m:language:eng -c:s copy "%filename.new" | |
| :: Be sure to delete or comment out (using ::) the command you dont plan to use!! | |
| setlocal EnableExtensions DisableDelayedExpansion |
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
| ErsatzTV and Synoogy and Plex notes: | |
| Ersatztv Version: 0.8.4 beta (Jan 2024) | |
| Hardware transcoding = use vaapi docker image | |
| 720P profile using QSV has been very smooth/stable streaming locally or remotely in Plex, settings below: | |
| 1280x720 | |
| Thread Count: 0 | |
| Format: h264 |
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
| :: ------------------------------------------------------------- | |
| :: Quick way to download youtube vids via yt-dlp | |
| :: Set yt-dlpLOC to where yt-dlp.exe resides | |
| :: yt-dlp set to embed thumbnails and metadata | |
| :: set to force US geolocation and use best quality options | |
| :: outputs video files as mp4 | |
| :: Opens up folder where videos are saevd to once completed | |
| :: Seamonkey420 3/10/2022 | |
| :: -------------------------------------------------------------- | |
| @echo off |
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
| yt-dlp.exe -f b --geo-bypass-country US --embed-thumbnail --add-metadata --compat-options embed-metadata -P "D:/Downloads/YT" YOUTUBEURLHERE/ |
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
| :: Can be integrated into explorer shell | |
| :: and right click menus too | |
| :: seamonkey420 | |
| :: Requirements: copy ffmpeg to c:\windows\system32 | |
| :: env variables needed to parse spaces in file paths! | |
| :: pick one of the below sets of code, top replaces all audio with an ac3 one | |
| :: bottom adds an ac3 stream and retains everything else, video, subs, audio. | |
| setlocal EnableExtensions DisableDelayedExpansion |
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
| #1. Install RPi.GPIO. Open up Putty and run these commands: | |
| sudo su | |
| apt-get update | |
| apt-get install python-pip python-dev gcc | |
| apt-get install python-setuptools | |
| pip install rpi.gpio | |
| #1a. Enable root to make things easier, you can disable afterwards, type and then enter a root password: | |
| sudo passwd |
NewerOlder