This is the link I am using:
[sound:xxxs://hs2.dliflc.edu/3/course/content/egyptian/media/mil/mp4/ae0001_ams.mp4]
Is mp4 linking simply not supported by the Ankidroid, or I am missing something here?
Thanks!
This is the link I am using:
[sound:xxxs://hs2.dliflc.edu/3/course/content/egyptian/media/mil/mp4/ae0001_ams.mp4]
Is mp4 linking simply not supported by the Ankidroid, or I am missing something here?
Thanks!
So, you’re linking to a file the on web rather than having downloaded it, put it in your note and referring to it by filename? I didn’t know that was supported by the [sound:...]
syntax even on desktop. I tested it and it does indeed seem that it isn’t supported by AnkiDroid.
[sound: ]
surrounding the link using regex Search & replace on desktop for all your notes. Then in your card template instead of {{That audio field}}
you do <video src="{{That audio field}}">
. Since this is a link to the web the normal caveats to using the html <sound>
or <video>
tags don’t apply.This syntax works on desktop but it’s not officially supported and documented, so it can break anytime.
This makes sense, thanks a lot, will try it tonight.
Ok, so I changed my {{Audio}} field to: https://… .mp4.
<video src="{{Audio}}">
did not work. But this worked (only in AnkiDroid, which is what I need anyway):
<video id="video" width="300" height="250" controls>
<source src="{{Audio}}" type="video/mp4">
</video>
Cheers!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.