-
|
Hi, I have a problem sending a video buffer from frigate to telegram. It gives me the following error: Caught exception in sender node: What could be the reason? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
|
@uberiain how do you send the video? Do you have an example flow? |
Beta Was this translation helpful? Give feedback.
-
|
This is my example flow used to send the video: The info about the mp4: Nombre completo : C:\Users\urafael\Downloads\clip.mp4 If I convert the video with vlc, I can send the file to telegram without problem. The info about the file converted are: Nombre completo : C:\Users\urafael\Desktop\convert.mp4 |
Beta Was this translation helpful? Give feedback.
-
|
@uberiain please send me an example file via email (see my profile) |
Beta Was this translation helpful? Give feedback.
-
|
The file type could not be determined by the internal logic: pass the content type as follows ` return [msg]; |
Beta Was this translation helpful? Give feedback.
-
|
@uberiain You are from Las Palmas? If so please write me an email |
Beta Was this translation helpful? Give feedback.
The file type could not be determined by the internal logic: pass the content type as follows
`
msg.payload = {
type: 'video',
content: msg.payload,
chatId: ...,
fileOptions : {
contentType: 'video/mp4'
}
}
return [msg];
`