Social-Media-Video-Transcriber
A powerful Python tool for downloading and transcribing videos from multiple platforms (TikTok, YouTube, Facebook, Instagram) using Parakeet-MLX for high-quality speech-to-text conversion.
File Explorer
- ADDING_PROVIDERS.md
- AUDIO_SPEED_OPTIMIZATION.md
- IMPLEMENTATION_SUMMARY.md
- PLAYLIST_FOLDER_NAMING.md
- README.md
- TESTING_GUIDE.md
- __init__.py
- settings.py
- __init__.py
- base.py
- facebook_provider.py
- instagram_provider.py
- reddit_provider.py
- tiktok_provider.py
- twitch_provider.py
- vimeo_provider.py
- x_provider.py
- youtube_provider.py
- __init__.py
- downloader.py
- transcriber.py
- __init__.py
- file_utils.py
- llm_utils.py
- processing.py
- __init__.py
- cli.py
- conftest.py
- .env.example
- .gitignore
- .prettierrc.json
- main.py
- MANIFEST.in
- package-lock.json
- package.json
- pytest.ini
- README.md
- requirements.txt
- setup.py
- setup.sh
# 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.
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:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
rich
View Details ▼
rich
A toolbox for fancy output in the terminal.
rich {{path/to/file.py}}
Display a file with syntax highlighting:
rich {{path/to/file.py}} --line-numbers --guides
Add line numbers, and indentation guides:
rich {{path/to/file.py}} --theme {{monokai}}
Apply a theme:
uv pip
View Details ▼
uv pip
Provides pip-like commands for installing, uninstalling, and managing packages.
uv pip install {{package}}
Install a package:
uv pip install {{[-r|--requirements]}} {{requirements.txt}}
Install packages from a requirements file:
uv pip install {{package==1.2.3}}
Install a package with a specific version:
uv venv
View Details ▼
uv venv
Create an isolated Python environment for installing packages.
uv venv
Create a virtual environment in the default location (`.venv`):
uv venv {{path/to/venv}}
Create a virtual environment at a specific path:
uv venv {{[-p|--python]}} {{3.12}}
Create using a specific Python version:
yt-dlp
View Details ▼
yt-dlp
A youtube-dl fork with additional features and fixes.
Download videos from YouTube and other websites.
See also: `ytfzf`.
yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
Download a video or playlist (with the default options from command below):
yt-dlp {{[-F|--list-formats]}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
List the available downloadable formats for a video:
yt-dlp {{[-f|--format]}} "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
Download a video or playlist using the best MP4 video available (default is "bv\*+ba/b"):
