Bug: requesting transcriptions of files in subdirectories writes results in current directory, potentially overwriting previous results for files of same name contained in other subdirectories. #230
NielsMayer
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Assuming a directory structure like
After issuing commands
One notes the issue that the output transcription files are all written to
TopLevelDirectory
instead of in their respective sub-directories.Furthermore, in the case where sub-directories contain files of the same name, e.g.
FileA.mp3
andFileB.mp3
, the results of transcribingSubDirectoryB/FileA.mp3
SubDirectoryB/FileB.mp3
will result in files atTopLevelDirectory/FileA.mp3.srt
andTopLevelDirectory/FileB.mp3.srt
, which will overwrite previous results of transcribingSubDirectoryA/FileA.mp3
andSubDirectoryA/FileB.mp3
...The correct thing to do would be to place the transcriptions in their respective sub-directories, e.g.,
TopLevelDirectory/SubDirectoryA/FileA.mp3.srt
TopLevelDirectory/SubDirectoryA/FileB.mp3.srt
TopLevelDirectory/SubDirectoryA/FileC.mp3.srt
TopLevelDirectory/SubDirectoryB/FileA.mp3.srt
TopLevelDirectory/SubDirectoryB/FileB.mp3.srt
TopLevelDirectory/SubDirectoryB/FileD.mp3.srt
Beta Was this translation helpful? Give feedback.
All reactions