微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Flask 再次或两次重新启动已经在执行的函数

如何解决Flask 再次或两次重新启动已经在执行的函数

在我使用 flask-ngrok 作为服务器运行的 Flask 应用程序中,在 app.route('/summ',methods=['POST']) 中有一个名为 summarise("vdeo.mp4")函数调用。此功能一个视频摘要功能,它接收视频并进行摘要并将该视频的一些图像输出一个文件夹中,并运行约 6 分钟的 6 秒视频。问题是,调用函数五分钟后, 路线 app.route('/summ',methods=['POST']) 再次执行并再次调用 summarise("vdeo.mp4")。但是最初的函数调用并没有停止,而是完成了。为什么会调用两次?这是在 Google Colab 中执行的。

代码

app = Flask(__name__)
run_with_ngrok(app)

@app.route('/')
def home():
  print("rendering home")
  return render_template('index.html')

#problems here
@app.route('/summ',methods=['POST'])
def start_summ():
  if request.method == 'POST':
    print(datetime.Now().strftime("%H:%M:%s"))
    print("summarise(vdeo.mp4) started")
    summarise("vdeo.mp4")                     #executed again after 5 minutes.
    return render_template('process.html')
  return "Failed"

if __name__ == '__main__': 
  app.debug = False
  app.use_reloader = False
  app.threaded = True
  app.run()

错误

2021-05-28 13:42:46.234549: I tensorflow/stream_executor/platform/default/dso_loader.cc:53] Successfully opened dynamic library libcudart.so.11.0
2021-05-28 13:42:48.554359: I tensorflow/stream_executor/platform/default/dso_loader.cc:53] Successfully opened dynamic library libcuda.so.1
2021-05-28 13:42:48.565276: E tensorflow/stream_executor/cuda/cuda_driver.cc:328] Failed call to cuInit: CUDA_ERROR_NO_DEVICE: no CUDA-capable device is detected
2021-05-28 13:42:48.565322: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:156] kernel driver does not appear to be running on this host (a43cda5a69a5): /proc/driver/nvidia/version does not exist
 * Serving Flask app "app_1" (lazy loading)
 * Environment: production
   WARNING: This is a development server. Do not use it in a production deployment.
   Use a production Wsgi server instead.
 * Debug mode: off
 * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
 * Running on http://25edff30f9c4.ngrok.io
 * Traffic stats available on http://127.0.0.1:4040
rendering home
127.0.0.1 - - [28/May/2021 13:44:01] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [28/May/2021 13:44:02] "GET /static/main.css HTTP/1.1" 200 -
127.0.0.1 - - [28/May/2021 13:44:02] "GET /favicon.ico HTTP/1.1" 404 -
127.0.0.1 - - [28/May/2021 13:44:02] "GET /static/upload-button.png HTTP/1.1" 200 -
13:44:06
summarise(vdeo.mp4) started
vdeo
/content/drive/MyDrive/VSWKC/Summariser/vdeo created at time : 13:44:06
[0.015858283266425133,0.016241978853940964,0.016133742406964302,0.016138125211000443,0.01643361896276474,0.016757505014538765,0.0164627768099308,0.016451548784971237,0.016677992418408394,0.01630450412631035,0.016581129282712936,0.016422154381871223,0.01655539683997631,0.01640453189611435,0.01650838367640972,0.01666712574660778,0.016070149838924408,0.016337484121322632,0.01636395789682865,0.016539745032787323,0.016485940665006638,0.01603204384446144,0.016428040340542793,0.01613614894449711,0.01617911271750927,0.01629020832479,0.016249515116214752,0.016320159658789635,0.016239693388342857,0.01605207845568657,0.016110491007566452,0.01617620699107647,0.016041336581110954,0.01594223640859127,0.015955332666635513,0.016100147739052773,0.016193175688385963,0.01646832935512066,0.016465965658426285,0.017020760104060173,0.01716926507651806,0.017307855188846588,0.016969282180070877,0.01663544960319996,0.01674046367406845,0.017038408666849136,0.01696315035223961,0.017087208107113838,0.017137518152594566,0.01678892970085144,0.016824977472424507,0.017071997746825218,0.017094088718295097,0.016816500574350357,0.016468174755573273,0.016302792355418205,0.01622065156698227,0.016374200582504272,0.01677415333688259,0.01639104261994362,0.01632380485534668,0.016662321984767914,0.016449950635433197,0.016169218346476555,0.01650288887321949,0.016704954206943512,0.016523612663149834,0.01633939892053604,0.016487199813127518,0.016383441165089607,0.016421722248196602,0.016393503174185753,0.016501782462000847,0.016709458082914352,0.016844740137457848,0.016579333692789078,0.016049398109316826,0.016243526712059975,0.016548946499824524,0.01590922102332115,0.015925511717796326,0.015605555847287178,0.015940936282277107,0.015931349247694016,0.016023289412260056,0.016375737264752388,0.015482540242373943,0.01601862907409668,0.016237203031778336,0.01643279381096363,0.01641349121928215,0.016272613778710365,0.01581803523004055,0.01632819138467312,0.015480715781450272,0.01649346575140953,0.016173239797353745,0.015746796503663063,0.015937479212880135,0.016023952513933182,0.015830250456929207,0.016375796869397163,0.01607583463191986,0.016052501276135445,0.01638459414243698,0.016418511047959328,0.016141334548592567,0.016182634979486465,0.01617628149688244,0.016399085521697998,0.016149569302797318,0.01584392599761486,0.015638569369912148,0.015613088384270668,0.01595526561141014,0.015663273632526398,0.015549982897937298,0.01642974093556404,0.016400163993239403,0.015718583017587662,0.016097284853458405,0.015813305974006653,0.015856778249144554,0.015436670742928982,0.015667729079723358,0.016077224165201187,0.015897594392299652,0.015407181344926357,0.015950826928019524,0.016322776675224304,0.016160892322659492,0.01586553268134594,0.015848588198423386,0.016103969886898994,0.016589434817433357,0.016488661989569664,0.015684520825743675,0.015321188606321812,0.016192005947232246,0.01543912198394537,0.015957355499267578,0.01574179343879223,0.01617123745381832,0.01588461920619011,0.015948940068483353,0.01602165773510933,0.01567062735557556,0.016837475821375847,0.015798419713974,0.01572914980351925,0.0162561796605587,0.016119064763188362,0.01603722758591175,0.0159856379032135,0.015378707088530064,0.015973985195159912,0.016410982236266136,0.016484588384628296,0.01637469045817852,0.016323266550898552,0.016453970223665237,0.016187023371458054,0.015836693346500397,0.01587017998099327,0.015962747856974602,0.01587473787367344,0.016100335866212845,0.0158755574375391,0.01606290601193905,0.01577077992260456,0.015902720391750336,0.01600063033401966,0.016235100105404854,0.015953760594129562,0.016076091676950455,0.01591266319155693,0.016299810260534286,0.016313806176185608,0.01620274968445301,0.016319546848535538,0.016391118988394737,0.016257017850875854,0.016328919678926468,0.016474030911922455,0.01648505963385105,0.016440793871879578,0.01656113564968109,0.01597999781370163,0.016379915177822113,0.016273323446512222,0.01622823253273964,0.01564156264066696,0.016090761870145798,0.0161875169724226,0.016314135864377022,0.01580999791622162,0.015965720638632774,0.016085010021924973,0.016625694930553436,0.016631918027997017,0.01636655256152153,0.016348738223314285,0.016196830198168755,0.01619654893875122,0.01631622575223446,0.016505837440490723,0.016374584287405014,0.016310639679431915,0.01604676991701126,0.016202902421355247,0.015624767169356346,0.015958327800035477,0.016078144311904907,0.015775443986058235,0.01605045236647129,0.0162959024310112,0.016368623822927475,0.01628771796822548,0.01610284484922886,0.016392072662711143,0.015955250710248947,0.015943478792905807,0.015899771824479103,0.015872979536652565,0.015960680320858955,0.016033314168453217,0.015833891928195953,0.01626688987016678,0.01613316684961319,0.016048962250351906,0.016318321228027344,0.016045017167925835,0.016171494498848915,0.015401136130094528,0.015202770940959454,0.015322655439376831,0.015440845862030983,0.015290392562747002,0.015647636726498604,0.015746580436825752,0.0156222740188241,0.01596214808523655,0.01574869640171528,0.016197331249713898,0.016405072063207626,0.016579387709498405,0.016381636261940002,0.016037777066230774,0.015761855989694595,0.0161726176738739,0.01611638069152832,0.01614709198474884,0.01624627783894539,0.01619352586567402,0.01641598530113697,0.016287993639707565,0.016372080892324448,0.01617210917174816,0.01574498601257801,0.016234712675213814,0.016222599893808365,0.01644282229244709,0.016073565930128098,0.016186097636818886,0.016192089766263962,0.016414368525147438,0.01602695882320404,0.01562597043812275,0.0158765260130167,0.01655605621635914,0.01642567478120327,0.01659192517399788,0.016635645180940628,0.01642603613436222,0.016036121174693108,0.015833260491490364,0.01605704426765442,0.016166307032108307,0.01605100929737091,0.01622290536761284,0.01606011763215065,0.016287023201584816,0.016437001526355743,0.016687896102666855,0.016191504895687103,0.015724072232842445,0.01579936221241951,0.015771476551890373,0.01587764360010624,0.016077548265457153,0.015648532658815384,0.01590563729405403,0.015334689058363438,0.015650538727641106,0.015613051131367683,0.01581539958715439,0.016214916482567787,0.01599849946796894,0.016160566359758377,0.01592952385544777,0.016444813460111618,0.015764297917485237,0.015802571550011635,0.016443757340312004,0.01591501571238041,0.01612740010023117,0.015980388969182968,0.016268232837319374,0.0162290558218956,0.016695166006684303,0.01616286300122738,0.016109252348542213,0.01590300351381302,0.016165805980563164,0.01621566154062748,0.01682341657578945,0.016420144587755203,0.01648315042257309,0.01655198261141777,0.015769049525260925,0.015652235597372055,0.016504105180501938,0.01653481274843216,0.016249913722276688,0.01609862968325615,0.01681123487651348,0.016326414421200752,0.016184533014893532,0.01649085059762001,0.015884745866060257,0.016628634184598923,0.0162347424775362,0.015919242054224014,0.01613256148993969,0.01601932756602764,0.01631278172135353,0.01642400212585926,0.016150925308465958,0.016328826546669006,0.016469286754727364,0.01661415956914425,0.016531750559806824,0.01583804562687874,0.016116946935653687,0.015982210636138916,0.01675480231642723,0.01673213019967079,0.016143636777997017,0.015740523114800453,0.016148781403899193,0.01618454046547413,0.015940021723508835,0.016622217372059822,0.016713988035917282,0.016679588705301285,0.016519196331501007,0.01646219938993454,0.016594579443335533,0.017167195677757263,0.016186363995075226,0.01647827960550785,0.016610966995358467,0.015768367797136307,0.016255509108304977,0.0161905474960804,0.016715820878744125,0.016675224527716637,0.016017494723200798,0.016921693459153175,0.016301820054650307,0.016482029110193253,0.01640630140900612,0.01599385216832161,0.016076907515525818,0.016387246549129486,0.016407864168286324,0.01625203900039196,0.015956275165081024,0.01627160608768463,0.01585046947002411,0.016568366438150406,0.016603335738182068,0.016018884256482124,0.016222380101680756,0.016269994899630547,0.0163465216755867,0.016046220436692238,0.015308359637856483,0.01602315530180931,0.016402985900640488,0.016275513917207718,0.016113733872771263,0.01618271879851818,0.016006991267204285,0.016138557344675064,0.01597590371966362,0.016636518761515617,0.015781043097376823,0.016116509214043617,0.01601458713412285,0.015803514048457146,0.01609131135046482,0.015567444264888763,0.016087740659713745,0.01637379266321659,0.016061564907431602,0.016072502359747887,0.016001712530851364,0.015742680057883263,0.01584773324429989,0.016151750460267067,0.016349604353308678,0.015843799337744713,0.016070088371634483,0.01616242341697216,0.016253579407930374,0.016046905890107155,0.01637175865471363,0.016160042956471443,0.015923673287034035,0.016068091616034508,0.016180159524083138,0.01568254642188549,0.015979863703250885,0.015775073319673538,0.015449815429747105,0.01615435816347599,0.015997493639588356,0.016589008271694183,0.016748910769820213,0.01623377576470375,0.01560896448791027,0.015989674255251884,0.01641051284968853,0.016739852726459503,0.016109447926282883,0.0164909977465868,0.01619568280875683,0.01613389328122139,0.01565677672624588,0.016630489379167557,0.016394348815083504,0.01594085991382599,0.015887973830103874,0.01577933132648468,0.01614033617079258,0.01592247001826763,0.015866754576563835,0.015994062647223473,0.016169946640729904,0.01592365838587284,0.01579360105097294,0.0154676903039217,0.01617378555238247,0.016031432896852493,0.01566571556031704,0.016273941844701767,0.016082821413874626,0.01615297980606556,0.015774548053741455,0.015820389613509178,0.016071341931819916,0.01603098213672638,0.015459219925105572,0.01597553677856922,0.015827063471078873,0.016010815277695656,0.015942730009555817,0.015576648525893688,0.01639407128095627,0.016084948554635048,0.01634639874100685,0.015708286315202713,0.01547300722450018,0.015685999765992165,0.015609931200742722,0.016153614968061447,0.015640968456864357,0.01601577363908291,0.016003860160708427,0.015797173604369164,0.015644589439034462,0.01570684090256691,0.015248758718371391,0.01631801575422287,0.01644224487245083,0.015814434736967087,0.01623040996491909,0.01577545888721943,0.01642036624252796,0.015874261036515236,0.01617478020489216,0.01639624871313572,0.01669609732925892,0.01600298099219799,0.015694130212068558,0.015864906832575798,0.016051778569817543,0.015979697927832603,0.01605825684964657,0.015875326469540596,0.01577376388013363,0.01588156260550022,0.015759801492094994,0.015772158280014992,0.01589074730873108,0.015959976240992546,0.016431035473942757,0.0162517037242651,0.0164730716496706,0.01608373410999775,0.01603846810758114,0.01637033000588417,0.01657584309577942,0.015954824164509773,0.015953805297613144,0.016551624983549118,0.016129322350025177,0.01605238765478134,0.01581183820962906,0.015408492647111416,0.0156947560608387,0.01583245024085045,0.01568039134144783,0.01660805381834507,0.016191231086850166,0.01616538129746914,0.01596960797905922,0.016367895528674126,0.015718035399913788,0.015945155173540115,0.01605047471821308,0.015794837847352028,0.015948401764035225,0.01597972773015499,0.01578591763973236,0.01577858440577984,0.01582419127225876,0.016068821772933006,0.01603982225060463,0.015605182386934757,0.015691213309764862,0.01628044620156288,0.015922604128718376,0.01607503555715084,0.015649376437067986,0.015698248520493507,0.015675924718379974,0.0159001462161541,0.016081063076853752,0.015743227675557137,0.015811020508408546,0.016291853040456772,0.015159618109464645,0.015852777287364006,0.016141502186655998,0.016376812011003494,0.016254577785730362,0.01611177623271942,0.016040228307247162,0.01620316132903099,0.016265852376818657,0.015786487609148026,0.016066063195466995,0.015900302678346634,0.015740567818284035,0.01596466451883316,0.016037985682487488,0.01621992141008377,0.01602941006422043,0.01601487211883068,0.016007930040359497,0.01612398773431778,0.015854978933930397,0.01646549627184868,0.01618053950369358,0.015973791480064392,0.016111165285110474,0.015972217544913292,0.015765126794576645,0.0165687408298254,0.016400817781686783,0.01595689170062542,0.016174165531992912,0.015572525560855865,0.015603688545525074,0.015726683661341667,0.015965569764375687,0.015662383288145065,0.015597193501889706,0.01595030352473259,0.016313500702381134,0.016156017780303955,0.015988608822226524,0.01601281389594078,0.015955796465277672,0.016080014407634735,0.01648043654859066,0.0166777353733778,0.016637876629829407,0.016640856862068176,0.0167110413312912,0.016480213031172752,0.016481604427099228,0.016502177342772484,0.016369806602597237,0.01626010052859783,0.01609925739467144,0.01655528135597706,0.016531115397810936,0.016642946749925613,0.01645568385720253,0.01649959199130535,0.016645649448037148,0.016073090955615044,0.016405455768108368,0.016471603885293007,0.016352204605937004,0.01662606932222843,0.016441790387034416,0.016577724367380142,0.016702095046639442,0.016449101269245148,0.016759170219302177,0.01651589572429657,0.01642027497291565,0.016315612941980362,0.01610986515879631,0.016241315752267838,0.016245469450950623,0.015955191105604172,0.016173452138900757,0.016061382368206978,0.01608799770474434,0.016013287007808685,0.016220103949308395,0.01611306145787239,0.01618785224854946,0.016075775027275085,0.015620448626577854,0.01573297381401062,0.01612953469157219,0.016676273196935654,0.01615009270608425,0.01632130704820156,0.016377579420804977,0.01663341373205185,0.01613461971282959,0.016053050756454468,0.015975169837474823,0.01607336290180683,0.016297239810228348,0.016252458095550537,0.016480127349495888,0.0164905097335577,0.015905652195215225,0.01597639173269272,0.016189279034733772,0.015939507633447647,0.016307281330227852,0.016142653301358223,0.016029117628932,0.016143085435032845,0.01590682566165924,0.016139738261699677,0.01615861803293228,0.016269642859697342,0.016343271359801292,0.016105102375149727,0.016163788735866547,0.016531718894839287,0.016349203884601593,0.01646699383854866,0.016345961019396782,0.016103992238640785,0.01624462381005287,0.015930796042084694,0.016446201130747795,0.016667766496539116,0.01638718508183956,0.016265882179141045,0.01645597629249096,0.016104204580187798,0.016182437539100647,0.016560101881623268,0.016330664977431297,0.015749670565128326,0.01609141007065773,0.01664002053439617,0.01642948016524315,0.01593596860766411,0.01572773978114128,0.016303984448313713,0.016056086868047714,0.01601170003414154,0.016027364879846573,0.01599326729774475,0.015562360174953938,0.01596285216510296,0.01641351357102394,0.016252854838967323,0.016526006162166595,0.01606564037501812,0.01605760119855404,0.0162745900452137,0.016334649175405502,0.01619006134569645,0.016399409621953964,0.01640814170241356,0.016132334247231483,0.016120517626404762,0.015661340206861496,0.016287725418806076,0.015809819102287292,0.01586846634745598,0.01611499674618244,0.015703361481428146,0.015634480863809586,0.016220469027757645,0.0158552173525095,0.016081463545560837,0.015758195891976357,0.015573672950267792,0.015590943396091461,0.01579045131802559,0.015890590846538544,0.01623837649822235,0.016393395140767097,0.016340825706720352,0.016283510252833366,0.016014916822314262,0.01590271294116974,0.016044052317738533,0.016079138964414597,0.016235802322626114,0.015881920233368874,0.016365332528948784,0.016385585069656372,0.016419149935245514,0.016173982992768288,0.016454016789793968,0.015944644808769226,0.01654733158648014,0.016435522586107254,0.01611163280904293,0.016576644033193588,0.016413481906056404,0.016169855371117592,0.016549862921237946,0.016339920461177826,0.01652582921087742,0.015893029049038887,0.01611362025141716,0.01599031873047352,0.015890225768089294,0.01596827432513237,0.01607557199895382,0.015858342871069908,0.015804998576641083,0.015954839065670967,0.01627010852098465,0.016261328011751175,0.015734104439616203,0.01611688733100891,0.016299962997436523,0.016510985791683197,0.015973085537552834,0.016073724254965782,0.016078459098935127,0.016422869637608528,0.016357894986867905,0.016173193231225014,0.01568523421883583,0.01593351736664772,0.015835510566830635,0.015585607849061489,0.01557842455804348,0.016108239069581032,0.01636553928256035,0.01620858907699585,0.016341116279363632,0.01618475280702114,0.015836084261536598,0.016099868342280388,0.01629665121436119,0.015608692541718483,0.015891246497631073,0.015593480318784714,0.015839457511901855,0.015755437314510345,0.015672054141759872,0.015076345764100552,0.015216799452900887,0.015446865931153297,0.015536578372120857,0.015520846471190453,0.015893639996647835,0.01610451377928257,0.016135551035404205,0.016060365363955498,0.016471389681100845,0.016098041087388992,0.015809709206223488,0.016133826225996017,0.016307564452290535,0.016218841075897217,0.016291439533233643,0.015887422487139702,0.015734096989035606,0.01628875732421875,0.016851840540766716,0.016847670078277588,0.015989981591701508,0.015782583504915237,0.01581924594938755,0.01574123091995716,0.01665462739765644,0.016584621742367744,0.015453755855560303,0.016028815880417824,0.016535859555006027,0.016312843188643456,0.016042262315750122,0.016187403351068497,0.01616073213517666,0.016101786866784096,0.016297293826937675,0.01568511687219143,0.016036948189139366,0.016005398705601692,0.016803136095404625,0.016512582078576088,0.01523958146572113,0.015877434983849525,0.016389690339565277,0.0166203323751688,0.01600550301373005,0.015626344829797745,0.01571464352309704,0.01584574766457081,0.016337774693965912,0.016105057671666145,0.016291897743940353,0.016114074736833572,0.016580646857619286,0.01638101413846016,0.015869226306676865,0.016092315316200256,0.016260938718914986,0.016649091616272926,0.015744512900710106,0.01654626987874508,0.016205091029405594,0.01656505838036537,0.01581651344895363,0.016142887994647026,0.01606205478310585,0.015732059255242348,0.01594100333750248,0.01618930883705616,0.015859130769968033,0.016056839376688004,0.016008982434868813,0.01549235638231039,0.015850983560085297,0.016192810609936714,0.01644853875041008,0.01598772406578064,0.01583745889365673,0.016329333186149597,0.016450753435492516,0.01640184037387371,0.015921304002404213,0.015886176377534866,0.016027597710490227,0.01581398956477642,0.016176577657461166,0.016559993848204613,0.016116857528686523,0.015474838204681873,0.016086217015981674,0.016334710642695427,0.016288038343191147,0.01637301780283451,0.016262250021100044,0.01624666526913643,0.016466299071907997,0.01617899164557457,0.01648579351603985,0.015660744160413742,0.01548033207654953]
2021-05-28 13:47:36.177896: I tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc:176] None of the MLIR Optimization Passes are enabled (registered 2)
2021-05-28 13:47:36.178315: I tensorflow/core/platform/profile_utils/cpu_utils.cc:114] cpu Frequency: 2200155000 Hz
13:49:06
summarise(vdeo.mp4) started
vdeo
/content/drive/MyDrive/VSWKC/Summariser/vdeo created at time : 13:49:07
[2021-05-28 13:49:07,258] ERROR in app: Exception on /summ [POST]
Traceback (most recent call last):
  File "/usr/local/lib/python3.7/dist-packages/flask/app.py",line 2447,in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/local/lib/python3.7/dist-packages/flask/app.py",line 1952,in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/local/lib/python3.7/dist-packages/flask/app.py",line 1821,in handle_user_exception
    reraise(exc_type,exc_value,tb)
  File "/usr/local/lib/python3.7/dist-packages/flask/_compat.py",line 39,in reraise
    raise value
  File "/usr/local/lib/python3.7/dist-packages/flask/app.py",line 1950,in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/local/lib/python3.7/dist-packages/flask/app.py",line 1936,in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/content/drive/MyDrive/VSWKC/Summariser/app_1.py",line 28,in start_summ
    summarise("vdeo.mp4")                     #executed twice
  File "/content/drive/.shortcut-targets-by-id/1HWYQxcmxJ83JvqPNLCUX4xZ77IoSXRGV/VSWKC/Summariser/test.py",line 418,in summarise
    run_sum(source_vid,req_clsuter)
  File "/content/drive/.shortcut-targets-by-id/1HWYQxcmxJ83JvqPNLCUX4xZ77IoSXRGV/VSWKC/Summariser/test.py",line 358,in run_sum
    os.mkdir(path)
FileExistsError: [Errno 17] File exists: '/content/drive/MyDrive/VSWKC/Summariser/vdeo'
127.0.0.1 - - [28/May/2021 13:49:07] "POST /summ HTTP/1.1" 500 -
[0,7,2,6,9,1,8,4,3,5,0]
447
in fe mkdir /content/drive/MyDrive/VSWKC/Summariser/vdeo/cluster

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。