chaos-vpn
Extreme real-time voice distortion engine for Android and iOS. Features 18+ chaos effects including bit-scrambling, vocoding, and reverse glitches for Discord, WhatsApp, and gaming.
File Explorer
- ci.yml
- GeneratedPluginRegistrant.java
- AudioLoopbackManager.kt
- BootReceiver.kt
- ChaosDSP.kt
- ChaosProjectionService.kt
- ChaosVoicePlugin.kt
- ChaosVpnService.kt
- DSPProcessor.kt
- MainActivity.kt
- NotificationHelper.kt
- RootAudioRouter.kt
- VirtualMicService.kt
- ic_mic_chaos.xml
- strings.xml
- styles.xml
- AndroidManifest.xml
- build.gradle
- proguard-rules.pro
- gradle-wrapper.jar
- gradle-wrapper.properties
- build.gradle
- gradle.properties
- gradlew
- gradlew.bat
- settings.gradle
- README.md
- README.md
- AppDelegate.swift
- AudioEngineManager.swift
- GeneratedPluginRegistrant.h
- GeneratedPluginRegistrant.m
- Info.plist
- RootAudioRouter.swift
- Runner.entitlements
- Podfile
- bandpass_filter.dart
- bit_scrambler.dart
- chorus_flanger.dart
- convolution_reverb.dart
- echo_buffer.dart
- effect_engine.dart
- formant_shifter.dart
- graphic_eq.dart
- pcm_utils.dart
- pitch_wobble.dart
- reverb_processor.dart
- reverse_glitch.dart
- stutter_freezer.dart
- telephone_overload.dart
- vocoder_scream.dart
- chaos_state.dart
- effect_settings.dart
- preset.dart
- chaos_state_provider.dart
- effect_settings_provider.dart
- audio_service_handler.dart
- foreground_task_handler.dart
- native_audio_bridge.dart
- permission_service.dart
- preset_service.dart
- effects_screen.dart
- home_screen.dart
- onboarding_screen.dart
- settings_screen.dart
- chaos_toggle.dart
- effect_slider_card.dart
- spectrogram_painter.dart
- status_bar_widget.dart
- waveform_painter.dart
- constants.dart
- logger.dart
- main.dart
- bandpass_filter_test.dart
- echo_buffer_test.dart
- effect_engine_test.dart
- reverb_processor_test.dart
- dsp_pipeline_test.dart
- widget_test.dart
- .gitignore
- analysis_options.yaml
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE
- pubspec.lock
- pubspec.yaml
- README.md
- README2.MD
- SECURITY.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
dart
View Details ▼
dart
Manage Dart projects.
dart create {{project_name}}
Initialize a new Dart project in a directory of the same name:
dart run {{path/to/file.dart}}
Run a Dart file:
dart pub get
Download dependencies for the current project:
flutter pub
View Details ▼
flutter pub
Flutter's package manager.
Note: Packages are available on <https://pub.dev>.
See also: `flutter`.
flutter pub get
Download/Update all packages specified in `pubspec.yaml`:
flutter pub add {{package1 package2 ...}}
Add a package dependency to an app:
flutter pub remove {{package1 package2 ...}}
Remove a package dependency from an app:
flutter
View Details ▼
flutter
Google's free, open source, and cross-platform mobile app SDK.
Some subcommands such as `pub` have their own usage documentation.
flutter create {{project_name}}
Initialize a new Flutter project in a directory of the same name:
flutter doctor
Check if all external tools are correctly installed:
flutter channel {{stable|beta|dev|master}}
List or change Flutter channel:
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
View Details ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
keytool
View Details ▼
keytool
A certificate management utility included with Java.
keytool -genkeypair -v -keystore {{path/to/file.keystore}} -alias {{key_name}}
Create a keystore:
keytool -storepasswd -keystore {{path/to/file.keystore}}
Change a keystore password:
keytool -keypasswd -alias {{key_name}} -keystore {{path/to/file.keystore}}
Change a key's password inside a specific keystore:
