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

Dev #703

Open
wants to merge 47 commits into
base: dev
Choose a base branch
from
Open

Dev #703

Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
4b0ee42
stable version
Jun 12, 2023
10d918e
Change default checkpoint path
teamclouday Jun 14, 2023
743b1d3
Merge pull request #401 from teamclouday/patch-1
vinthony Jun 14, 2023
9af5b14
fixed: cannot running on cpu mode caused by facexlib
Jun 29, 2023
5355d1a
fixed bugs: rename app.py since the confuse of SDWEBUI
Jun 29, 2023
ae0b263
fixed bug: hacking facexlib of FAN
Jul 3, 2023
7bb4faf
同步文件名的修改
monk-after-90s Jul 17, 2023
bd5b64a
Merge pull request #511 from monk-after-90s/main
vinthony Aug 6, 2023
8a3fee3
Update app_sadtalker.py
vantang Aug 19, 2023
ad0e0b4
Update text2speech.py
andchir Aug 27, 2023
2fc32d4
Update README.md
vinthony Aug 30, 2023
8634beb
Merge pull request #585 from vantang/main
vinthony Aug 30, 2023
edc1b60
Merge pull request #609 from OpenTalker/vinthony-patch-1
vinthony Aug 30, 2023
9973509
Delete LICENSE
vinthony Sep 8, 2023
eb91a07
Create LICENSE
vinthony Sep 8, 2023
a4bd2a9
Update README.md
vinthony Sep 8, 2023
ed419f2
Update README.md
vinthony Sep 8, 2023
367fa60
Fixed Python3.8 colab dependencies issue
BhavyBansal24 Sep 8, 2023
a41ea04
Rewrite README to fix spelling
fakerybakery Sep 12, 2023
40db9e3
Update README.md
fakerybakery Sep 12, 2023
7fcf08f
Update install.md
fakerybakery Sep 12, 2023
afd075d
Update best_practice.md
fakerybakery Sep 12, 2023
e4bcb0b
Update webui_extension.md
fakerybakery Sep 12, 2023
0fdd114
Update face3d.md
fakerybakery Sep 12, 2023
0b141ba
Update spacing
fakerybakery Sep 12, 2023
4ee832c
Update README.md
fakerybakery Sep 12, 2023
a49e7e2
Fix issue causing fatal error in WebUI
fakerybakery Sep 13, 2023
e8ac61f
Merge pull request #635 from fakerybakery/main
vinthony Sep 15, 2023
6bcd3a5
Merge pull request #606 from andchir/main
vinthony Sep 15, 2023
eab2a3a
Merge pull request #624 from BhavyBansal24/patch-1
vinthony Sep 15, 2023
cd4c046
update colab
Oct 10, 2023
002631b
feat: record process time
Anlim Nov 10, 2023
bd6c136
feat: total duration time
Anlim Nov 10, 2023
4844a04
feat: seamlessClone duration time
Anlim Nov 10, 2023
ca77809
feat: duration time
Anlim Nov 10, 2023
e48c67c
feat: log file
Anlim Nov 10, 2023
c0841f6
feat: log file
Anlim Nov 10, 2023
6ebcabf
update: make_animation for loop duration time log
Anlim Nov 17, 2023
f92d2a8
update: animate generate function duration time log
Anlim Nov 17, 2023
18e89e0
update: animate generate enhanced_images_gen_with_len duration time
Anlim Nov 17, 2023
aa7a37b
update: make_animation for loop cancel record duration log
Anlim Nov 22, 2023
52baaf7
feat: record file size
Anlim Nov 24, 2023
fcc92f0
feat: av_path_enhancer file size
Anlim Nov 24, 2023
9b09d5d
update
Anlim Nov 24, 2023
a34708f
update: log mp4 file size
Anlim Nov 24, 2023
8bf19eb
update: Time spent notes
Anlim Nov 25, 2023
2cfafc0
Add TODO items
talentspsp Nov 27, 2023
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
Prev Previous commit
Next Next commit
feat: log file
Anlim committed Nov 10, 2023
commit e48c67c528f4c0cfbe450f35ae31f3be1b451783
2 changes: 1 addition & 1 deletion src/utils/process_log.py
Original file line number Diff line number Diff line change
@@ -2,6 +2,6 @@


def record_process_log(func_name, tag, duration, relate_file=None):
with open("process_log.csv", "a") as f:
with open("process_log.csv", "a+") as f:
writer = csv.writer(f)
writer.writerow([func_name, tag, duration, relate_file])