3bfb11fe0f
* MicRecorderAPI: allow duration limit to be disabled with zero or negative * MicRecorderAPI: avoid unnecessary MediaRecorder parameter in RecorderCommandHandler.handle() * MicRecorderAPI: allow encoder and format to be set by user All supported encoders can be set with their names. Unless a format is set explicitly with its corresponding integer, a suitable format would be chosen automatically for the chosen encoder. * MicRecorderAPI: allow AudioSource to be set by user Just in case, so it can only be set with the source's corresponding integer. * MicRecorderAPI: allow bit rate, sampling rate and number of channels to be set by user * MicRecorderAPI: a couple of fixes Have year before month and day in the default file name for better sorting. Also fix the extension name in it for automatic format selection. As we want the file to have extension name by default, we have to pick a default format/encoder. AAC is chosen because it is probably the most compatible one among different platforms. * MicRecorderAPI: replace all getAbsoluteFile() with getAbsolutePath() None of them were used in places where it should be a File. * MicRecorderAPI: properly report unlimited MaxDuration * MicRecorderAPI: make sure the recorder is released when not used * MicRecorderAPI: remove aac_eld/he_aac/vorbis support They are at least problematic on my phone. They either fail to work or crash the API app. Sometimes the crash is even unrecoverable. |
||
---|---|---|
.github/ISSUE_TEMPLATE | ||
.idea | ||
app | ||
gradle/wrapper | ||
.gitignore | ||
build.gradle | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
README.md | ||
settings.gradle |
Termux API
This is an app exposing Android API to command line usage and scripts or programs.
When developing or packaging, note that this app needs to be signed with the same key as the main Termux app for permissions to work (only the main Termux app are allowed to call the API methods in this app).
License
Released under the GPLv3 license.
How API calls are made through the termux-api helper binary
The termux-api client binary in the termux-api
package generates two linux anonymous namespace sockets, and passes their address to the TermuxApiReceiver broadcast receiver as in:
/system/bin/am broadcast ${BROADCAST_RECEIVER} --es socket_input ${INPUT_SOCKET} --es socket_output ${OUTPUT_SOCKET}
The two sockets are used to forward stdin from termux-api
to the relevant API class and output from the API class to the stdout of termux-api
.
Client scripts
Client scripts which processes command line arguments before calling the termux-api
helper binary are available in the termux-api package.
Ideas
- Wifi network search and connect.
- Add extra permissions to the app to (un)install apps, stop processes etc.