summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2014-06-01 18:25:21 +0200
committerwm4 <wm4@nowhere>2014-06-01 19:55:45 +0200
commitf2a00f3de366d4c1da13b82c03753ba14dfee6b4 (patch)
tree0cfbeeabbe766d233845f9177a5215c141a717d9
parentb8cb86047106701d9c3bee63075c3664ad9bd936 (diff)
downloadmpv-f2a00f3de366d4c1da13b82c03753ba14dfee6b4.tar.bz2
mpv-f2a00f3de366d4c1da13b82c03753ba14dfee6b4.tar.xz
player: write file name to the watch later config file
This simply writes the file name as a comment to the top of the watch later config file. It can be useful to the user for determining whether a watch later config file can be manually removed (e.g. in case the corresponding media file has been deleted) or not.
-rw-r--r--DOCS/man/en/options.rst9
-rw-r--r--options/options.c1
-rw-r--r--options/options.h1
-rw-r--r--player/configfiles.c2
4 files changed, 13 insertions, 0 deletions
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst
index 811fcf19dc..b53d86b744 100644
--- a/DOCS/man/en/options.rst
+++ b/DOCS/man/en/options.rst
@@ -1832,6 +1832,15 @@ OPTIONS
This behavior is disabled by default, but is always available when quitting
the player with Shift+Q.
+``--write-filename-in-watch-later-config``
+ Prepend the watch later config files with the name of the file they refer
+ to. This is simply written as comment on the top of the file.
+
+ .. warning::
+
+ This option may expose privacy-sensitive information and is thus
+ disabled by default.
+
``--screen=<default|0-32>``
In multi-monitor configurations (i.e. a single desktop that spans across
multiple displays), this option tells mpv which screen to display the
diff --git a/options/options.c b/options/options.c
index 173d3493cc..9ac4a63632 100644
--- a/options/options.c
+++ b/options/options.c
@@ -559,6 +559,7 @@ const m_option_t mp_opts[] = {
OPT_FLAG("resume-playback", position_resume, 0),
OPT_FLAG("save-position-on-quit", position_save_on_quit, 0),
+ OPT_FLAG("write-filename-in-watch-later-config", write_filename_in_watch_later_config, 0),
OPT_FLAG("ordered-chapters", ordered_chapters, 0),
OPT_STRING("ordered-chapters-files", ordered_chapters_files, 0),
diff --git a/options/options.h b/options/options.h
index 6ddb432867..05aa8195ae 100644
--- a/options/options.h
+++ b/options/options.h
@@ -153,6 +153,7 @@ typedef struct MPOpts {
double step_sec;
int position_resume;
int position_save_on_quit;
+ int write_filename_in_watch_later_config;
int pause;
int keep_open;
int audio_id;
diff --git a/player/configfiles.c b/player/configfiles.c
index 3ef2b7919e..fd0a8231c0 100644
--- a/player/configfiles.c
+++ b/player/configfiles.c
@@ -298,6 +298,8 @@ void mp_write_watch_later_conf(struct MPContext *mpctx)
FILE *file = fopen(conffile, "wb");
if (!file)
goto exit;
+ if (mpctx->opts->write_filename_in_watch_later_config)
+ fprintf(file, "# %s\n", mpctx->filename);
fprintf(file, "start=%f\n", pos);
for (int i = 0; backup_properties[i]; i++) {
const char *pname = backup_properties[i];