-
|
Could you kindly tell me the command to export and import podcasts from opml file? I cant find it in the help menu. Thanks; loving the application , on a daily basis for a few years. |
Beta Was this translation helpful? Give feedback.
Answered by
hasezoey
Sep 23, 2025
Replies: 1 comment 1 reply
-
|
(as of c75104b) $ termusic --help
Terminal Music and Podcast Player written in Rust. Can download music from youtube(netease/migu/kugou) and then embed lyrics and album photos into mp3/m4a/flac/wav/ogg vorbis files.
Usage: termusic [OPTIONS] [MUSIC_DIRECTORY] [COMMAND]
Commands:
export Import Podcast feeds from a opml file
import Export Podcast feeds to a opml file
help Print this message or the help of the given subcommand(s)
Arguments:
[MUSIC_DIRECTORY] With no `MUSIC_DIRECTORY`, use config in `~/.config/termusic/config.toml`, default is ~/Music
Options:
-c, --hide-cover Not showing album cover. default is showing
--disable-cover Disable cover support, even if compiled-in
-d, --disable-discord Not showing discord representation. default is showing
-m, --max-depth <MAX_DEPTH> Max depth(NUMBER) of folder, default is 4
-b, --backend <BACKEND> Select the backend, default is `rusty` [env: TMS_BACKEND=] [possible values: rusty, mpv, gstreamer]
--log-to-file[=<LOG_TO_FILE>] Enable logging to a file, automatically enabled if "log-file" is manually set [env: TM_LOGTOFILE=] [default: true] [possible values: true, false]
--log-file <LOG_FILE> Set logging file [env: TM_LOGFILE=] [default: /tmp/termusic-tui.log]
--log-filecolor Use colored logging for files Example: live tailing via `tail -f /logfile` [env: TM_LOGFILE_COLOR=]
-h, --help Print help
-V, --version Print version
$ termusic import --help
Export Podcast feeds to a opml file
Usage: termusic import <FILE>
Arguments:
<FILE>
Options:
-h, --help Print help
$ termusic export --help
Import Podcast feeds from a opml file
Usage: termusic export <FILE>
Arguments:
<FILE>
Options:
-h, --help Print helpTL;DR: you likely want I just now noticed that the help text seems to be inverted, will fix that later. (done #575) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hasezoey
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(as of c75104b)
$ termusic --help Terminal Music and Podcast Player written in Rust. Can download music from youtube(netease/migu/kugou) and then embed lyrics and album photos into mp3/m4a/flac/wav/ogg vorbis files. Usage: termusic [OPTIONS] [MUSIC_DIRECTORY] [COMMAND] Commands: export Import Podcast feeds from a opml file import Export Podcast feeds to a opml file help Print this message or the help of the given subcommand(s) Arguments: [MUSIC_DIRECTORY] With no `MUSIC_DIRECTORY`, use config in `~/.config/termusic/config.toml`, default is ~/Music Options: -c, --hide-cover Not showing album cover. default is showing --disable-cover …