Limit upload too small file
This commit is contained in:
parent
1ca7226cfe
commit
ba40134219
@ -53,6 +53,7 @@ def encode():
|
|||||||
global isEncode
|
global isEncode
|
||||||
Common.appendEncodeStatus("Encode Daemon Starting")
|
Common.appendEncodeStatus("Encode Daemon Starting")
|
||||||
while True:
|
while True:
|
||||||
|
isEncode = False
|
||||||
i = Common.encodeQueue.get()
|
i = Common.encodeQueue.get()
|
||||||
if Common.forceNotEncode:
|
if Common.forceNotEncode:
|
||||||
Common.appendEncodeStatus("设置了不编码,所以[{}]不会编码".format(i))
|
Common.appendEncodeStatus("设置了不编码,所以[{}]不会编码".format(i))
|
||||||
@ -60,6 +61,9 @@ def encode():
|
|||||||
continue
|
continue
|
||||||
if os.path.exists(i):
|
if os.path.exists(i):
|
||||||
isEncode = True
|
isEncode = True
|
||||||
|
if os.path.getsize(path) < 8 * 1024 * 1024:
|
||||||
|
Common.appendEncodeStatus("Encoded File >{}< is too small, will ignore it".format(path))
|
||||||
|
continue
|
||||||
Common.appendEncodeStatus("Encoding >{}< Start".format(i))
|
Common.appendEncodeStatus("Encoding >{}< Start".format(i))
|
||||||
os.system("ffmpeg -i {} -c:v copy -c:a copy -f mp4 {} -y".format(i, i[:13] + ".mp4"))
|
os.system("ffmpeg -i {} -c:v copy -c:a copy -f mp4 {} -y".format(i, i[:13] + ".mp4"))
|
||||||
Common.uploadQueue.put(i[:13] + ".mp4")
|
Common.uploadQueue.put(i[:13] + ".mp4")
|
||||||
@ -68,7 +72,6 @@ def encode():
|
|||||||
shutil.move(i, Common.config["mtd"])
|
shutil.move(i, Common.config["mtd"])
|
||||||
elif Common.config["del"]:
|
elif Common.config["del"]:
|
||||||
os.remove(i)
|
os.remove(i)
|
||||||
isEncode = False
|
|
||||||
|
|
||||||
|
|
||||||
def upload(date=datetime.strftime(datetime.now(), "%Y_%m_%d")):
|
def upload(date=datetime.strftime(datetime.now(), "%Y_%m_%d")):
|
||||||
|
Reference in New Issue
Block a user