diff --git a/main.py b/main.py index 967babf..1392b0b 100644 --- a/main.py +++ b/main.py @@ -24,7 +24,7 @@ def ripDvd(driveName): movieName = driveName os.system('HandBrakeCLI -i /dev/sr0 -o output/"' + movieName + '.mp4" --preset-import-file preset.json') print("- Movie has been ripped, will now procede to upload file") - + uploadresults.upload() print("- Movie has been uploaded") def waitForDvd(): diff --git a/uploadresults.py b/uploadresults.py index 6d84a7a..89dca84 100644 --- a/uploadresults.py +++ b/uploadresults.py @@ -27,10 +27,9 @@ def upload(): # Download each file sftp.put(local_filepath, remote_filepath) - print(f"Uploaded: {local_filepath} to {remote_filepath}") + print(f"- Uploaded: {local_filepath} to {remote_filepath}") # Close the SFTP session and SSH connection sftp.close() ssh_client.close() - print("All files downloaded and connections closed.")