Merge branch 'main' into main

This commit is contained in:
Henry Ruhs 2023-05-30 15:32:07 +02:00 committed by GitHub
commit 0d2fbca4ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 55 additions and 4 deletions

39
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@ -0,0 +1,39 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Details**
What OS are you using?
- [ ] Linux
- [ ] Linux in WSL
- [ ] Windows
- [ ] Mac
Are you try to use a GPU?
- [ ] No. I am not using the `---gpu` flag
- [ ] NVIDIA
- [ ] AMD
- [ ] Intel
- [ ] Mac
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Sanity Check**
- [ ] I have the latest code from the github repository
- [ ] I have followed the installation guide

11
.github/ISSUE_TEMPLATE/suggestion.md vendored Normal file
View File

@ -0,0 +1,11 @@
---
name: Suggestion
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Describe your suggestion**
A clear and concise description of what you want to happen.

View File

@ -36,7 +36,7 @@ def set_fps(input_path, output_path, fps):
def create_video(video_name, fps, output_dir): def create_video(video_name, fps, output_dir):
output_dir = path(output_dir) output_dir = path(output_dir)
os.system(f'ffmpeg -framerate {fps} -i "{output_dir}{sep}%04d.png" -c:v libx264 -pix_fmt yuv420p -y "{output_dir}{sep}output.mp4"') os.system(f'ffmpeg -framerate {fps} -i "{output_dir}{sep}%04d.png" -c:v libx264 -crf 32 -pix_fmt yuv420p -y "{output_dir}{sep}output.mp4"')
def extract_frames(input_path, output_dir): def extract_frames(input_path, output_dir):

View File

@ -6,4 +6,4 @@ psutil==5.9.5
tk==0.1.0 tk==0.1.0
pillow==9.5.0 pillow==9.5.0
torch==2.0.1 torch==2.0.1
onnxruntime-gpu==1.15.0 onnxruntime-gpu==1.15.0

5
run.py
View File

@ -158,12 +158,12 @@ def save_file():
def status(string): def status(string):
if args['source_img']: if 'cli_mode' in args:
print("Status: " + string) print("Status: " + string)
else: else:
status_label["text"] = "Status: " + string status_label["text"] = "Status: " + string
window.update() window.update()
def start(): def start():
print("DON'T WORRY. IT'S NOT STUCK/CRASHED.\n" * 5) print("DON'T WORRY. IT'S NOT STUCK/CRASHED.\n" * 5)
@ -219,6 +219,7 @@ if __name__ == "__main__":
limit_resources() limit_resources()
if args['source_img']: if args['source_img']:
args['cli_mode'] = True
start() start()
quit() quit()
window = tk.Tk() window = tk.Tk()