linkkf 로직수정중

This commit is contained in:
2025-12-25 19:42:32 +09:00
parent 695d26767e
commit af9a38a973
128 changed files with 8711 additions and 1484 deletions

View File

@@ -1,9 +1,17 @@
# -*- coding: utf-8 -*-
#########################################################
import os, sys, traceback, subprocess, json, platform
import json
import os
import platform
import subprocess
import sys
import traceback
from framework import app, logger, path_data
from ..support.base.subprocess import ToolSubprocess
class ToolFfmpeg(object):
@classmethod
@@ -15,7 +23,7 @@ class ToolFfmpeg(object):
logger.warning(' '.join(command))
ret = ToolSubprocess.execute_command_return(command, format='json')
return ret
except Exception as exception:
logger.error('Exception:%s', exception)
except Exception as e:
logger.error(f"Exception:{str(e)}")
logger.error(traceback.format_exc())