File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 13
13
unsuccessfulbuild
14
14
/MpegCoder /x64 /
15
15
16
+ # Compressed files
17
+ * .tar.xz
18
+ * .tar.gz
19
+ * .tar.bz2
20
+ * .7z
21
+ * .zip
22
+ * .rar
23
+
16
24
# Prerequisites
17
25
* .d
18
26
Original file line number Diff line number Diff line change 77
77
</PropertyGroup >
78
78
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|x64'" >
79
79
<LinkIncremental >true</LinkIncremental >
80
- <IncludePath >C:\Users\yjin4\Anaconda3 \envs\torch19 \include;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
81
- <LibraryPath >C:\Users\yjin4\Anaconda3 \envs\torch19 \libs;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
80
+ <IncludePath >C:\Users\yjin4\.conda \envs\py39 \include;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
81
+ <LibraryPath >C:\Users\yjin4\.conda \envs\py39 \libs;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
82
82
</PropertyGroup >
83
83
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|Win32'" >
84
84
<LinkIncremental >false</LinkIncremental >
87
87
</PropertyGroup >
88
88
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|x64'" >
89
89
<LinkIncremental >false</LinkIncremental >
90
- <IncludePath >C:\Users\yjin4\Anaconda3 \envs\torch19 \include;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
91
- <LibraryPath >C:\Users\yjin4\Anaconda3 \envs\torch19 \libs;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
90
+ <IncludePath >C:\Users\yjin4\.conda \envs\py39 \include;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
91
+ <LibraryPath >C:\Users\yjin4\.conda \envs\py39 \libs;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
92
92
</PropertyGroup >
93
93
<ItemDefinitionGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|Win32'" >
94
94
<ClCompile >
Original file line number Diff line number Diff line change 3
3
'''
4
4
################################################################
5
5
# WebTools
6
- # @ PyCodes for Shell Project
6
+ # @ FFMpeg encoder and decoder.
7
7
# Yuchen Jin @ cainmagi@gmail.com
8
8
# Requirements: (Pay attention to version)
9
9
# python 3.3+
23
23
import urllib3
24
24
25
25
try :
26
- from tqdm .tqdm import wrapattr
26
+ from tqdm import tqdm
27
+ wrapattr = tqdm .wrapattr
27
28
except ImportError :
28
29
import contextlib
29
30
30
31
@contextlib .contextmanager
31
32
def wrapattr (req , mode = None , total = 0 , desc = None ):
32
- return req
33
+ yield req
33
34
34
35
__all__ = [
35
36
'get_token' ,
You can’t perform that action at this time.
0 commit comments