2022-01-20

Audio editing on Android

 This app is the "Audacity" of Android, although it does cost, AudioLab:
AudioLab for Android


If you're familiar with Audacity for Windows, this is its Android cousin.

No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...