Hello, I would like to talk about how Anki handles video/audio playback. As you know, Anki is mainly used for language learning, right? And we also know that when learning a language, one of the most effective methods is repetition—not only spaced repetition, but especially listening repetition. I’m trying to learn English using the TV show Friends, and I noticed something important. When I open a card, the video/audio plays automatically, but it only plays once. I have to keep tapping th...| Anki Forums
I tried putting a specific deck to a parent deck but whenever I’m putting it to the parent deck, the new cards won’t appear. Then when I remove it from the parent deck, the new cards are visible. Can someone help me with this? Thanks! Here are some references for example:| Anki Forums
hi there I am learning german from the DW nico course. ive found a way to import the audio clips from the vocabulary section into anki but when i do the flashcards, the audio doesnt play. The MP3 files are there in the collection.media folder and they play when i click on them but they dont play with the flashcards themselves. how do i fix this? thanks in advance.| Anki Forums
Im using anki to learn Irish and I downloaded a shared deck which is good for vocab but when I want to add my own cards to the deck I see the premade deck type and cant change any of the fields or the aspects of it like where does what go or the colour of the text and how to add some of the stuff to my own cards do I need to know html for this| Anki Forums
The Anki menu entry on macOS 25.07.3 is populated with two About sections (“Über Anki” in my translation). The first entry however relates to AJT add-ons (@tatsumoto) while the second entry provides information on Anki as expected. I’d like to ask to fix this and return to standard macOS behaviour (= there is only one such entry providing information about the current application).| Anki Forums
I want to be as concise as possible. I tried to use both MathJax inline and MathJax block, and the issue persists. I even tried restarting the app but nothing. Here’s the screen of the card in the review mode: And here’s the screen of the card in Edit mode: I didn’t have this issue previously. Please someone help me it’s not easy to understand MathJax without having it rendered.| Anki Forums
Version checks Add-ons that were manually deconstructing Anki’s version string and making assumptions about the number of components it has should instead switch to Anki’s built-in tools for getting the version number. For example: from anki import buildinfo if int(buildinfo.version.split(".")[2]) < 45: # < 2.1.45 …should become: from anki.utils import pointVersion if pointVersion() < 45: ... For Anki 2.1.x releases, it will return the x. For Anki 23.10+, it packs the version into 6 dig...| Anki Forums
The add-on author author could take a look at Porting tips for Anki 23.10 - Add-ons - Anki Forums Modules under QtCore, QtGui and QtWidgets can be imported from aqt.qt instead, to remove old PyQt5 dependencies.| Anki Forums
Hi Used devices: one IOS with russian interface, two IOS with english interface and one macbook with english interface. We imported shared deck EN-RU where front = english word, back = russian translation. However, deck was imported in IOS with english interface with flipped order (front template = {{back}}), while IOS with russian interface and macbook with english interface weren’t impacted. Attempt to flip front with back on IOS device failed with some javascript error. Deck - https://an...| Anki Forums
Today, I wanted to upgrade my Anki version on my Debian 12.x machine from 24.x to 25.latest. So I downloaded the latest 25 tarball, anki-launcher-25.09-linux.tar.zst. Unfortunately, this wasn’t the program itself, but just a set of programs, most notably the launcher, which then greeted me with a menu, including “1) Latest Anki”. When I try to use that, it fails in a number of ways: Anki Launcher 1) Latest Anki (press Enter) 2) Choose a version 5) Allow betas: off 6) Cache downloads: on...| Anki Forums
This is a response to Cloze one by one uncovering - #14 by shallash I’ll briefly explain how basic user input works in JS, so you can add buttons and keyboard shortcuts yourself whenever you need them in the future: Foundation: The HTML element The foundation for everything JS-related is the HTML element. Any content that isn’t plain text ( → textNode) is contained inside an element: various content containers (, , , …) links () images () etc. Elements can be accesse...| Anki Forums