You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`--preference`| Additional focus preferences or instructions | None |
230
+
|`--language`| Language the audio should be in | english |
227
231
|`--output-dir`| Directory to store output files | ./output |
228
232
229
-
Local-NotebookLM currently does NOT support multible languages other then english, you can try working around it by adding a text in the preferences saying what language the audio should be, also be sure the TTS model supports your desired language.
230
-
231
233
#### Format Types
232
234
233
235
Local-NotebookLM now supports both single-speaker and two-speaker formats:
@@ -251,6 +253,10 @@ Local-NotebookLM now supports both single-speaker and two-speaker formats:
@@ -287,7 +293,8 @@ success, result = podcast_processor(
287
293
length="long",
288
294
style="professional",
289
295
preference="Focus on the key technical aspects",
290
-
output_dir="./test_output"
296
+
output_dir="./test_output",
297
+
language="english"
291
298
)
292
299
293
300
if success:
@@ -441,6 +448,13 @@ flowchart TD
441
448
class pdf,file1,file2,file3,fileAudio data
442
449
```
443
450
451
+
## Multiple Language Support
452
+
453
+
Local-NotebookLM now supports multiple languages. You can specify the language when using the programmatic API or through the command line.
454
+
455
+
**Important Note:** When using a non-English language, ensure that both your selected LLM and TTS models support the desired language. Language support varies significantly between different models and providers. For optimal results, verify that your chosen models have strong capabilities in your target language before processing.
0 commit comments