Describe the bug
When sending a GIF using the POST /api/sendVideo endpoint with convert: true, the GIF is converted into a video successfully, but the resulting video does not play on Android devices.
The same converted video works correctly on iOS devices.
Version
{
"version": "2026.3.4",
"engine": "GOWS",
"tier": "PLUS"
}
Steps
To Reproduce
-
Call POST /api/sendVideo
-
Send a GIF file with convert: true
-
Receive the converted video on WhatsApp
-
Open the received video on:
- Android device → video does not play
- iOS device → video plays correctly
Expected behavior
The converted video should play correctly on both Android and iOS devices.
Requests - Responses
Request
{
"chatId": "CHATID",
"file": {
"mimetype": "image/gif",
"url": "MEDIA_URL",
"filename": "media.gif"
},
"reply_to": null,
"session": "SESSIONNAME",
"caption": "TEXT",
"convert": true
}
Endpoint
Actual behavior
- iOS: converted video works correctly
- Android: converted video is received but cannot be played
Screenshots
Additional context
This issue seems related to the video encoding/format generated during GIF-to-video conversion, which may not be fully compatible with Android WhatsApp clients.
Describe the bug
When sending a GIF using the
POST /api/sendVideoendpoint withconvert: true, the GIF is converted into a video successfully, but the resulting video does not play on Android devices.The same converted video works correctly on iOS devices.
Version
{ "version": "2026.3.4", "engine": "GOWS", "tier": "PLUS" }Steps
To Reproduce
Call
POST /api/sendVideoSend a GIF file with
convert: trueReceive the converted video on WhatsApp
Open the received video on:
Expected behavior
The converted video should play correctly on both Android and iOS devices.
Requests - Responses
Request
{ "chatId": "CHATID", "file": { "mimetype": "image/gif", "url": "MEDIA_URL", "filename": "media.gif" }, "reply_to": null, "session": "SESSIONNAME", "caption": "TEXT", "convert": true }Endpoint
Actual behavior
Screenshots
Additional context
This issue seems related to the video encoding/format generated during GIF-to-video conversion, which may not be fully compatible with Android WhatsApp clients.