View Single Post
Old 6th November 2018, 17:09   #16287  |  Link
byteshare
ByteShare
 
byteshare's Avatar
 
Join Date: Sep 2014
Location: On the Internet
Posts: 560
Quote:
Originally Posted by Atak_Snajpera View Post
Most likely something else is still using your file. Code in ripbot264 is waiting for exclusive access

Code:
Repeat
  FileHandle := FileOpen(inputfile, fmOpenRead or fmShareExclusive);
  sleep(100);
until (FileHandle>0) or (Terminated=true) or (FileExists(inputfile)=false);
if FileHandle>0 then FileClose(FileHandle);
You can find what application is using your video file using these commands

1) Run cmd.exe as administrator
2) Enter openfiles /local on
3) Restart PC
4) Run cmd.exe as administrator
5) Enter openfiles /query >> C:\openfiles.txt
6) Open C:\openfiles.txt in notepad and find your video file
Okay, that would explain it. I believe some were being used because I was using a separate app for encoding the audio.
Thank you very much for looking at this and explaining the cause.
byteshare is offline   Reply With Quote