wangdongxu

Merge branch 'develop_fifa_2026_replay_match' of ssh://gitlab.cmvideo.cn:7999/pr…

…oduction_capacity/clip/aigc-group/aigc-embedding-service into develop_fifa_2026_replay_match
... ... @@ -62,11 +62,12 @@ class FootballReplayMatch:
"""
task_id = data.get("id")
match_id = data.get("match_id")
replay_id = replay_info.get('id')
matched_event_id = None
# 该时间段附近是否有进球事件
replay_info = data['replay']
replay_id = replay_info.get('id')
live_events = data['events']
goal_live_events = [e for e in live_events if str(e.get('type', '')) == '1']
... ...