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.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
dart
설명 보기 ▼
dart
Dart 프로젝트 관리.
더 많은 정보: <https://dart.dev/tools/dart-tool>.
dart create {{project_name}}
같은 이름의 디렉터리에서 새로운 Dart 프로젝트를 초기화:
dart run {{path/to/file.dart}}
Dart 파일 실행:
dart pub get
현재 프로젝트에 대한 종속성을 다운로드:
flutter pub
설명 보기 ▼
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
설명 보기 ▼
flutter
Google의 무료 오픈 소스 크로스 플랫폼 모바일 앱 SDK.
`pub`과 같은 일부 하위 명령에는 자체 사용법 문서가 있음.
더 많은 정보: <https://github.com/flutter/flutter/blob/master/docs/tool/README.md>.
flutter create {{project_name}}
동일한 이름의 디렉터리에서 새로운 Flutter 프로젝트를 초기화:
flutter doctor
모든 외부 도구가 올바르게 설치되었는지 확인:
flutter channel {{stable|beta|dev|master}}
Flutter 채널 나열 또는 변경:
git checkout
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
keytool
Java에 포함된 인증서 관리 도구.
더 많은 정보: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/keytool.html>.
keytool -genkeypair -v -keystore {{path/to/file.keystore}} -alias {{key_name}}
키스토어 생성:
keytool -storepasswd -keystore {{path/to/file.keystore}}
키스토어 비밀번호 변경:
keytool -keypasswd -alias {{key_name}} -keystore {{path/to/file.keystore}}
특정 키스토어 내 키의 비밀번호 변경:
