-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Working with image file that contain colons ':' #120
Comments
Colons are used to specify the cover type and descriptions for tag formats supporting that, see the example on the README. I suppose I should add (or document if already implemented) a way of escaping here. In your example command you're not using any colons, though. Is that just to show what you did in a generic way or do I misunderstand that colons are the problem? And I suppose colons are only problematic within the path of the cover (but not within the path of the file to be edited itself). |
Having to escape paths can actually be a bit annoying when scripting so I added an additional CLI argument to override the delimiter used to provide the cover type and description (see the added documentation of the commit referenced by GitHub for details). You'd simply set it to a character that won't occur in the path. This also makes things easier internally as I don't have to handle escaping. I haven't tested it yet (except that the colon still works) but you can give it a try if you can build the tag editor from master. |
Thanks for responding and attempting to fix the situation. I have relevant CPP files located in:
For the command:
CMake Error at c++utilities/cpp-utilities-master/c++utilitiesConfig.cmake:131 (include): |
Not sure what you did wrong. Probably c++utilities has not been installed where CMake tries to look for it. For building I strongly recommend to follow instructions on https://github.com/Martchus/tageditor?tab=readme-ov-file#building-this-straight and you probably want to add And yes, |
The following MPV.conf setting is used to apply specific time stamp label format to video screen shots:
screenshot-template="%F - [%P] (%#01n)"
I.e. Filename - [HH:MM:SS.MM] (1).jpg
Unfortunately tag editor will generate error:
Error 03:57:28 setting tags: An IO error occurred when parsing the specified file "/Image/Directory/Without_File_Extension - [00": open failed: No such file or directory
[00, referring to the image file containing [HH, in its filename.
I have both paths enclosed in quotation. I'm on Ubuntu with bash terminal. The GUI works fine with such file names.
Escape character was no good:
"/path/to/image [00"\:"03"\:"03.193] (1).jpg"
This is an example of a command I executed:
FFMpeg had no trouble with colons in the filename.
The text was updated successfully, but these errors were encountered: