MPV cannot read filepaths from commands #15492
Answered
by
Christian-Nerd
Christian-Nerd
asked this question in
Q&A
-
I want to automatically play video and audio from a course that I have installed on my system. Because each video/audio file is in their own separate folders, I use this command
to separate the file paths. This did not work even when I added single and double quotes as MPV read all these files wrong. When it used double/single quotes it read multiple files as one. When I escaped all spaces, then it read each word as a filepath. How do I get MPV to read filepaths from commands? System Information |
Beta Was this translation helpful? Give feedback.
Answered by
Christian-Nerd
Feb 15, 2025
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The solution was using find -print0 and xargs -0 and it worked.