Get file path for a URL. Does not create the file.
static Future<String> getFilePath(String url) async { final dir = await getCacheDir(); final hash = _urlToHash(url); return '$dir/$hash.mp4'; }