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 | |
synclient EmulateTwoFingerMinZ=28 |
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
0x1949 | |
0x0006 |
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
adb kill-server | |
adb start-server | |
adb devices |
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
SUBSYSTEM=="usb", SYSFS{idVendor}=="1949", MODE="0666" | |
SUBSYSTEM=="usb", SYSFS{idVendor}=="18d1", MODE="0666" |
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
SUBSYSTEM=="usb", SYSFS{idVendor}=="1949", MODE="0666" | |
SUBSYSTEM=="usb", SYSFS{idVendor}=="18d1", MODE="0666" |
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
udevadm control --reload-rules |
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
udevadm control --reload-rules # one way | |
sudo systemctl restart udev.service # specific for Fedora linux | |
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
udevadm control --reload-rules # one way | |
sudo systemctl restart udev.service # specific for Fedora linux |
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/env bash | |
# | |
# Usage: put this script int unpacket ffmpeg sources tree and run | |
# ./build-ffmeg-android.sh | |
# | |
# This script was tested on NDK r7 and ffmpeg-0.10.2 | |
# | |
# You need to set up NDK_HOME environment variable in your .bashrc something like that | |
# export NDK_HOME=/usr/local/java/android-ndk-r7 |
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
--enable-decoder=h264 | |
--enable-parser=h264 | |
--enable-demuxer=h264 | |
--enable-encoder=h264 |
OlderNewer