-
Notifications
You must be signed in to change notification settings - Fork 17
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
Problem with german special characters #20
Comments
Pull requests are most welcome if you feel so inclined. Otherwise could you reproduce again but add “-vvv” to the invocation so we get verbose logs? |
hi, here the output with -vvv: processing 3/1071 movies : 3 Türken und ein Baby (2015) -------------------------------------------------------------------------- |
is this enough information for you ? again with an older version it already works (v0.7) ... only with the current version it doesn´t! thanks, tig |
update: it looks like it works but -d (dry run) doesn´t work .. when I remove the -d switch it works ! |
Another question: there are 2 temp files written .. first mp4_tmp and afterwards .sublertemp thanks ... |
interesting that it works when doing a non-dry run. Hopefully that'll point me to where it is broken. As for the temp files, those are an artifact of the underlying tool that I am using to embed the metadata and is something I can't really control so much. It's unfortunate that it does this two pass, but not something I can avoid unfortunately. |
hi,
in the current version there is a bug, when title/filename has a german special character (e.g. "ü") I checked with an older version (version 0.7) and it works like it should!
(edit: I run the mediatagger from macos high sierra)
here is the error:
processing 3/1071 movies : 3 Türken und ein Baby (2015) --------------------------------------------------------------------------
processing 1/1 media_items
processing 1/1 part_items
tagging...
'Tags added and optimized': '/Volumes/media/Media Plex/Filme/3 Türken und ein Baby (2015) - 1080p.mp4'
Traceback (most recent call last):
File "/Users/admin/Downloads/PlexMediaTagger/plexmediatagger.py", line 297, in
sys.exit(main())
File "/Users/admin/Downloads/PlexMediaTagger/plexmediatagger.py", line 254, in main
section_processor.process_section(section_element)
File "/Users/admin/Downloads/PlexMediaTagger/SectionProcessor.py", line 38, in process_section
self.process_movie_section_element(section_element)
File "/Users/admin/Downloads/PlexMediaTagger/SectionProcessor.py", line 150, in process_movie_section_element
threading.Thread(None, self.process_video(full_movie_item)).start()
File "/Users/admin/Downloads/PlexMediaTagger/SectionProcessor.py", line 205, in process_video
video_item_processor.process()
File "/Users/admin/Downloads/PlexMediaTagger/VideoItemProcessor.py", line 411, in process
self.tag(part_item)
File "/Users/admin/Downloads/PlexMediaTagger/VideoItemProcessor.py", line 219, in tag
shutil.move(tmp_filepath, filepath)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 325, in move
copy2(src, real_dst)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 153, in copy2
copyfile(src, dst)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 96, in copyfile
with open(src, 'rb') as fsrc:
IOError: [Errno 2] No such file or directory: u'/Volumes/media/Media Plex/Filme/3 T\xfcrken und ein Baby (2015) - 1080p.mp4_tmp'
The text was updated successfully, but these errors were encountered: