Skip to content
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

Add resolution override option to resize the frame to a given height … #21

Open
wants to merge 33 commits into
base: development
Choose a base branch
from
Open
Changes from 3 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6662f72
sort videos and faces lists alphanumerically
JaredTherriault Oct 2, 2024
de19ead
fix scrollwheel behaviour for linux and mac, allow scrolling paramete…
JaredTherriault Oct 2, 2024
505ecd5
Stop playback when attempting to jump frames via button or mouse wheel
JaredTherriault Oct 3, 2024
34b445d
Fix mouse wheel seeking on timeline for Unix
JaredTherriault Oct 3, 2024
40147f8
add avg fps entry so users can find the best settings for realtime pl…
JaredTherriault Oct 3, 2024
4120146
Merge pull request #6 from JaredTherriault/sort-videos-and-faces-lists
JaredTherriault Oct 4, 2024
4c44154
Merge pull request #7 from JaredTherriault/fix-unix-scrollwheel
JaredTherriault Oct 4, 2024
1c686f1
Merge pull request #8 from JaredTherriault/fix-unix-mouse-wheel-seeking
JaredTherriault Oct 4, 2024
e0d7d30
Merge pull request #9 from JaredTherriault/stop-playback-before-jumpi…
JaredTherriault Oct 4, 2024
bc41d04
Merge pull request #10 from JaredTherriault/add-avg-fps-entry
JaredTherriault Oct 4, 2024
66d0f26
Fix divide by zero issue
JaredTherriault Oct 4, 2024
7f93ee8
Merge pull request #11 from JaredTherriault/add-avg-fps-entry
JaredTherriault Oct 4, 2024
51c7694
Clamp values when creating restore mouth mask to ensure offsets don't…
JaredTherriault Oct 6, 2024
a733c32
Merge pull request #12 from JaredTherriault/fix-mouth-restore-offset-…
JaredTherriault Oct 6, 2024
f8c21c5
Parameterize history limit
JaredTherriault Oct 6, 2024
8c3580a
Merge pull request #13 from JaredTherriault/add-avg-fps-entry
JaredTherriault Oct 6, 2024
947c767
Add tooltip for video tiles with untruncated filename
JaredTherriault Oct 12, 2024
cbe0201
Update GUI.py
JaredTherriault Oct 19, 2024
bbc0940
Add tooltip for video tiles with untruncated filename
JaredTherriault Oct 12, 2024
d1bffa8
Merge branch 'dev-merge' into add-video-tooltips
JaredTherriault Oct 19, 2024
76e4f89
Merge pull request #14 from JaredTherriault/add-video-tooltips
JaredTherriault Oct 19, 2024
ffc9280
Update VideoManager.py
JaredTherriault Oct 19, 2024
3941320
Merge pull request #15 from JaredTherriault/fix-thread-time-list-floa…
JaredTherriault Oct 19, 2024
cbab52c
Merge pull request #16 from JaredTherriault/3x_source_faces_rows
JaredTherriault Oct 19, 2024
bad70a8
Use ffmpeg to extract interp frames
JaredTherriault Oct 21, 2024
427ad5f
Implement frame skip
JaredTherriault Oct 21, 2024
91e8c10
Fix frame skipping
JaredTherriault Oct 21, 2024
db8540f
Implement auto frame skip (draft)
JaredTherriault Oct 22, 2024
b42019a
Improve frame drop detection, add UI controls
JaredTherriault Oct 23, 2024
66b3345
Merge branch 'dev-merge' into arbitrary-playback-fps
JaredTherriault Oct 23, 2024
4ab97d7
Merge pull request #17 from JaredTherriault/arbitrary-playback-fps
JaredTherriault Oct 23, 2024
60b9414
Add resolution override option to resize the frame to a given height …
JaredTherriault Oct 24, 2024
5681798
Merge branch 'dev-merge' into display-resolution-options
JaredTherriault Oct 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rope/GUI.py
Original file line number Diff line number Diff line change
@@ -2495,7 +2495,7 @@ def populate_target_videos(self):
self.target_media.append(ImageTk.PhotoImage(image=Image.fromarray(videos[i][0])))

filename = os.path.basename(videos[i][1])
hovertip = RopeHovertip(self.target_media_buttons[i], filename)
hovertip = RopeHovertip(self.target_media_buttons[i], filename, x_offset=190)
if len(filename)>32:
filename = filename[:29]+'...'