3 Commits

Author SHA1 Message Date
4019882100 [30988f42] I have successfully implemented M4A audio support for the Meeting Assistant (Transcription Tool).
I have successfully implemented M4A audio support for the Meeting Assistant (Transcription Tool).
2026-02-16 11:58:22 +00:00
de924c2bcd [30988f42] chore(dev-session): Update session info and add frontend .gitignore 2026-02-16 11:58:02 +00:00
ba86235241 [30988f42] feat(transcription-tool): Add M4A audio support by re-encoding to MP3 2026-02-16 11:57:28 +00:00
6 changed files with 2781 additions and 2 deletions

View File

@@ -1 +1 @@
{"task_id": "2ff88f42-8544-8000-8314-c9013414d1d0", "token": "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", "session_start_time": "2026-02-16T10:34:48.050239"}
{"task_id": "30988f42-8544-817a-a250-fddb7d72b4c6", "token": "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", "session_start_time": "2026-02-16T11:58:09.261049"}

View File

@@ -21,7 +21,8 @@ class FFmpegService:
"ffmpeg", "-i", input_path,
"-f", "segment",
"-segment_time", str(settings.CHUNK_DURATION_SEC),
"-c", "copy",
"-c:a", "libmp3lame", # Re-encode to MP3 for compatibility
"-b:a", "256k", # Set a reasonable bitrate for quality
output_pattern
]

View File

@@ -0,0 +1,2 @@
node_modules/
dist/

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File