Skip to content

Commit 1d2dfd3

Browse files
Initial Commit
0 parents  commit 1d2dfd3

File tree

9 files changed

+716
-0
lines changed

9 files changed

+716
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.venv
2+
build
3+
buildenv
4+
dist
5+
video

VideoDenoiser.spec

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
from PyInstaller.utils.hooks import collect_all
3+
4+
# Collect data files from the 'df' package
5+
df_datas = collect_all('df')[0]
6+
7+
# Specify the models directory to be included
8+
# The first element is the source path (relative to the .spec file)
9+
# The second element is the destination path inside the bundled app
10+
model_datas = [('models', 'models')]
11+
12+
a = Analysis(
13+
['deep.py'],
14+
pathex=[],
15+
binaries=[],
16+
datas=df_datas + model_datas, # Combine the df data and the models data
17+
hiddenimports=[],
18+
hookspath=[],
19+
hooksconfig={},
20+
runtime_hooks=[],
21+
excludes=[],
22+
noarchive=False,
23+
optimize=0,
24+
)
25+
pyz = PYZ(a.pure)
26+
27+
exe = EXE(
28+
pyz,
29+
a.scripts,
30+
a.binaries,
31+
a.datas,
32+
[],
33+
name='VideoDenoiser',
34+
debug=False,
35+
bootloader_ignore_signals=False,
36+
strip=False,
37+
upx=True,
38+
upx_exclude=[],
39+
runtime_tmpdir=None,
40+
console=True,
41+
disable_windowed_traceback=False,
42+
argv_emulation=False,
43+
target_arch=None,
44+
codesign_identity=None,
45+
entitlements_file=None,
46+
)

0 commit comments

Comments
 (0)