Skip to content
Youssef Larbi edited this page Jul 29, 2026 · 1 revision

FAQ

Why does Tango use Anki and not another flashcard app?

Anki's spaced repetition algorithm is the most studied and widely used in language learning. Its open .apkg format means cards are portable and not locked into a service. AnkiConnect provides a local API that makes automation possible without scraping or browser automation. The plan is to expand to other platforms after v1.0.0.

Why does it take so long to process a video?

Each vocabulary word requires at least one API call to a definition source. These calls are made sequentially with a 0.5 second delay between them to avoid rate limits. A 100-word video with a cold cache takes 2-12 minutes. Words already in the SQLite cache are instant, so repeated runs on similar content are faster. Async API calls are planned for v1.0.0 which should reduce processing time by 80 percent.

Why are antonyms often missing?

Free dictionary APIs rarely return antonyms. dictionaryapi.dev includes them occasionally. Merriam-Webster's free tier almost never does. Tango supplements antonyms from WordNet when the APIs return nothing, which improves coverage for English. For non-English languages, antonym coverage remains sparse.

Why is my deck not recognised by name?

The deck name matcher checks each word in the deck name against a list of 40 languages in multiple languages. If your deck is named something that does not contain a recognisable language name, it will not be matched. Use the explicit LANGUAGE= flag instead, or rename your deck to include the language name. Run python -m pipeline --list-languages to see all recognised names.

Can I use Tango without an internet connection?

Not fully. Transcript extraction requires YouTube to be reachable. Definition fetching requires the MW or dictionaryapi.dev APIs. Translation can work offline if a local argostranslate model is installed. The SQLite cache means repeat words do not need internet access.

What happens to words with no definition?

Tango creates a fallback card with just the word and the sentence from the video where it appeared. The Definition field shows "No definition found". These cards are tagged no-definition so you can filter or delete them in Anki if you prefer.

Can I reprocess a video I already ran?

Not yet without manual intervention. The pipeline checks pipeline.db and warns you that the video was already processed, then exits without creating cards. Delete the video's entry from processed_videos in the SQLite database to allow reprocessing. A --force flag is planned for v1.0.0.

Why are proper nouns excluded?

Names of people, places, and organisations rarely appear in dictionaries and almost never have antonyms or synonyms in the useful sense. Including them creates cards like "Paris: a city in France" which adds noise without helping you learn the language. spaCy's named entity recognition tags these automatically, so they are filtered before the deck check step.

Clone this wiki locally