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
| Privacy Policy for DriveSnap | |
| Last Updated: January 18, 2026 | |
| 1. Data Collection and Usage | |
| DriveSnap ("we," "our," or "us") is dedicated to protecting your privacy. This Privacy Policy explains how our Chrome Extension interacts with your data. We adhere to a strict "Zero-Knowledge" policy: we do not collect, store, or share your personal information. | |
| DriveSnap is a client-side only application. This means: |
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
| !pip install librosa scikit-learn pydub soundfile lightgbm xgboost imbalanced-learn | |
| !apt-get install -y ffmpeg | |
| from google.colab import drive | |
| import os | |
| from pydub import AudioSegment | |
| drive.mount('/content/drive') |
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
| # 📦 Step 1: Install dependencies | |
| !pip install librosa scikit-learn pydub soundfile | |
| !apt-get install -y ffmpeg | |
| # 📁 Step 2: Mount Google Drive and define paths | |
| from google.colab import drive | |
| import os | |
| from pydub import AudioSegment |