20 lines
604 B
Python
20 lines
604 B
Python
"""Sample test data for video processing tests."""
|
|
|
|
SAMPLE_YOUTUBE_URL = "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
|
|
SAMPLE_VIDEO_ID = "dQw4w9WgXcQ"
|
|
|
|
SAMPLE_TRANSCRIPT_DATA = {
|
|
"video_id": SAMPLE_VIDEO_ID,
|
|
"title": "Sample Video Title",
|
|
"transcript": "This is a sample transcript for testing purposes."
|
|
}
|
|
|
|
SAMPLE_SUMMARY_DATA = {
|
|
"summary": "This is a sample summary.",
|
|
"key_points": ["Point 1", "Point 2", "Point 3"],
|
|
"chapters": [
|
|
{"title": "Introduction", "start_time": 0, "end_time": 30},
|
|
{"title": "Main Content", "start_time": 30, "end_time": 120}
|
|
]
|
|
}
|