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
# install adb shell apk using downloader | |
# open adb shell | |
# list usb drivers and their ids | |
$ sm list-disks | |
disk:8,0 | |
# partiion all of usb to be used as internal storage | |
$ sm partition disk:8,0 private |
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
#!/usr/bin/env bash | |
# * https://developer.android.com/reference/android/view/KeyEvent#constants | |
# * https://developer.amazon.com/appsandservices/solutions/devices/fire-tv/docs/amazon-fire-tv-remote-input | |
# * ---------------------------------------------------------------------------------------------------- | |
# * | | (KEYCODE_MEDIA_RECORD) | | | |
# * ---------------------------------------------------------------------------------------------------- | |
# * | | | |
# * ---------------------------------------------------------------------------------------------------- | |
# * | | KEYCODE_DPAD_UP | | |
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
result.xml | |
tmp.xml | |
tmp2.txt | |
*.jpg | |
*.mp4 | |
*.ts |
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/sh | |
if [ -z "$1" ] ; then | |
echo "Convert MediaInfo encoding settings to x264 commands" | |
echo "Usage: $0 <video>" | |
echo " $0 \"MediaInfo encoding settings\"" | |
exit 0 | |
fi | |