18 lines
611 B
Python
18 lines
611 B
Python
import os
|
|
import json
|
|
|
|
inter_dir = r"D:\F\NewI\opencode\daily-workspace\projects\piano-lesson-highlights\cases\lesson1\output_cli_full\intermediates"
|
|
transcript_file = os.path.join(inter_dir, "full_transcript.json")
|
|
|
|
if os.path.exists(transcript_file):
|
|
size = os.path.getsize(transcript_file)
|
|
with open(transcript_file, "r", encoding="utf-8") as f:
|
|
data = json.load(f)
|
|
print(f"Transcript exists: {size} bytes")
|
|
print(f"Segments: {len(data)}")
|
|
if data:
|
|
print(f"First segment: {data[0]}")
|
|
print(f"Last segment: {data[-1]}")
|
|
else:
|
|
print("Transcript file NOT found")
|