Replies: 1 comment
-
There is an API route to do this if you know your way around a REST API.
with the following JSON body {
"live_chat_path": "/data/temp/path-to-your-chat.json",
"channel_name": "TwitchChannelName",
"video_id": "acf3c6fb-5f2b-11f0-bb1d-0e78a72ec63e",
"video_external_id": "123456",
"channel_id": 85498365,
"previous_video_id": "123456",
"first_message_epoch": "1752330167621000"
}
The output path will be outPath := fmt.Sprintf("%s/%s-chat-convert.json", envConfig.TempDir, body.VideoID) So typically The API route requires authentication. Use the cookies from your browser session or log in with the API and use the cookie for the above POST request.
{
"username": "admin",
"password": "ganymede"
} |
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.
-
I would like to know if ganymede has any program/script that I can run manually to convert chats that I manually downloaded with chat-downloader to the format used by TwitchDownloader
Beta Was this translation helpful? Give feedback.
All reactions