Text Input Podcast generation #220
Unanswered
prerana016
asked this question in
Q&A
Replies: 1 comment
-
Input Text LimitsNo strict minimum or maximum limits. Podcastfy processes any text length, but:
Podcast DurationDuration depends on the mode you choose: Shortform (Default)
generate_podcast(urls=["https://example.com/article"])Longform
generate_podcast(
urls=["https://example.com/article"],
longform=True
)To customize duration: custom_config = {
"max_num_chunks": 12, # Increase for longer
"min_chunk_size": 400 # Decrease for longer
}
generate_podcast(
urls=["https://example.com/article"],
longform=True,
conversation_config=custom_config
) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there any minimum or maximum limit on input text for generating podcast? (how long short or long the text input can be ?)
How is the duration of podcast generated ?
Beta Was this translation helpful? Give feedback.
All reactions