M3U8 Play. Search and select to play (use `ffplay/ffmpeg`). `m3u8` files need put into `~/.local/share/m3u8-play/`
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
9 | Active |
8 | Rejected |
7 | Active |
6 | Rejected |
5 | Rejected |
4 | Inactive |
3 | Inactive |
2 | Inactive |
1 | Rejected |
1. You cannot use scripts (in your case spawn command) when you can do it in gjs: https://gjs.guide/extensions/review-guidelines/review-guidelines.html#scripts-and-binaries Remove spawn command from line 30 and use Gio.File.copy: https://gjs-docs.gnome.org/gio20~2.66p/gio.file#method-copy 2. Log should only be available on debug mode: You can do: ```js debug = false; function lg(s){ if (debug) log("==="+GETTEXT_DOMAIN+"===>"+s); } ```