├── .gitignore ├── __init__.py ├── data └── manually-added-contributors.csv ├── download.py ├── helpers.py ├── n_reviews_from_git_blame.py ├── reorganize.py ├── scripts ├── auto_caption.py ├── sync_all_captions.py ├── sync_captions.py ├── sync_transcription_update.py └── upload_all_new_languages.py ├── sentence_timings.py ├── srt_ops.py ├── track_contributors.py ├── transcribe_video.py ├── translate.py └── upload.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.DS_Store 3 | playground.py 4 | updates.txt -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/manually-added-contributors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/data/manually-added-contributors.csv -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/download.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/helpers.py -------------------------------------------------------------------------------- /n_reviews_from_git_blame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/n_reviews_from_git_blame.py -------------------------------------------------------------------------------- /reorganize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/reorganize.py -------------------------------------------------------------------------------- /scripts/auto_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/scripts/auto_caption.py -------------------------------------------------------------------------------- /scripts/sync_all_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/scripts/sync_all_captions.py -------------------------------------------------------------------------------- /scripts/sync_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/scripts/sync_captions.py -------------------------------------------------------------------------------- /scripts/sync_transcription_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/scripts/sync_transcription_update.py -------------------------------------------------------------------------------- /scripts/upload_all_new_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/scripts/upload_all_new_languages.py -------------------------------------------------------------------------------- /sentence_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/sentence_timings.py -------------------------------------------------------------------------------- /srt_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/srt_ops.py -------------------------------------------------------------------------------- /track_contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/track_contributors.py -------------------------------------------------------------------------------- /transcribe_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/transcribe_video.py -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/translate.py -------------------------------------------------------------------------------- /upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3b1b/caption_ops/HEAD/upload.py --------------------------------------------------------------------------------