hello,
does anyone know if it is possible to add symbols to json2video, for example smiley emojis?
“text”: ICONS from a json eg: +
hello,
does anyone know if it is possible to add symbols to json2video, for example smiley emojis?
“text”: ICONS from a json eg: +
Hi @Sergio_Manzanero
You cannot add emojis directly within the text, but you can include emojis as images, placing them anywhere you want and resizing them as needed. In the emoji image element, you can provide the URL in the following format:
https://emojiapi.dev/api/v1/{{emojiname}}/512.png
replace {{emojiname}} with the emoji name you want.
Feel free to reach out if you need further assistance.
Best regards,
Msquare Automation
Platinum Partner of Make
@Msquare_Automation
Thanks @Msquare_Automation
I need to show something like this:
“text”: +
when i run this code inside make, i get this error
[400] Error: Error parsing movie JSON or the movie was empty:
on the other hand, the preview in json2video is not working
I have managed to get to that point in this way, but in the next step I get the error again that the image is not arriving.
“src”: “$ID.1}”,
Error: Source URL is required for image element in Scene #1, Element #2
JSON2Video
I have seen that it has been moved to features, another option would be possible if it can be concatenated, like:
"img": "https://emojiapi.dev/api/v1/fire/64.png+https://emojiapi.dev/api/v1/fire/64.png";
Hi @Sergio_Manzanero
Image concatenation in single link is not possible. instead you have to create 2 elements to place two emojis. If you could share a sample input bundle you have created we could further assist you.
Best regards,
Msquare Automation
Platinum Partner of Make
@Msquare_Automation
I have this json as an example. I want to concatenate N elements. As N is a variable value, I could not define a static structure in the json, as it would generate an error in the user view.
{
"id": "qzdzxatx",
"comment": "Empty movie",
"resolution": "instagram-story",
"quality": "high",
"scenes": [
{
"id": "qnmrrkor",
"comment": "Scene 1",
"elements": [
{
"id": "qsl6m9u4",
"type": "image",
"aspect-ratio": "vertical",
"position": "center-center",
"src": "https://images.pexels.com/photos/1459505/pexels-photo-1459505.jpeg",
"height": 1920,
"zoom": 4,
"duration": -1
},
{
"id": "qwlkks40",
"type": "image",
"src": "https://emojiapi.dev/api/v1/fire/64.png",
"duration": -1
},
{
"id": "qwlkks99",
"type": "image",
"src": "https://emojiapi.dev/api/v1/fire/64.png",
"duration": -1
}
]
}
],
"elements": [
{
"id": "qy6cchu2",
"type": "subtitles",
"language": "en-US",
"settings": {
"style": "boxed-line",
"font-family": "Luckiest Guy",
"font-size": 90,
"position": "center-center"
}
}
],
"width": 1080,
"height": 1920
}
Best regards
if I put the complete url it works, but if I put the url from the excel it doesn’t work.
{
"id": "qzdzxatx",
"comment": "Movie with three scenes",
"resolution": "instagram-story",
"quality": "high",
"scenes": [
{
"id": "scene1",
"comment": "Scene 1 - emojis",
"duration": 5,
"elements": [
{
"id": "background1",
"type": "image",
"aspect-ratio": "vertical",
"position": "center-center",
"src": "https://images.pexels.com/photos/1459505/pexels-photo-1459505.jpeg",
"height": 1920,
"zoom": 4
},
{
"id": "text1",
"type": "text",
"text": "Why?",
"position": "center-bottom"
},
{
"id": "emoji1",
"type": "image",
"src": "{{249.`2`}}",
"position": "center-bottom",
"offset": {
"x": -50,
"y": -100
}
},
{
"id": "emoji2",
"type": "image",
"src": "{{249.`3`}}",
"position": "center-bottom",
"offset": {
"x": 50,
"y": -100
}
}
]
},
{
"id": "scene2",
"comment": "Scene 2 - Answer",
"duration": 2,
"elements": [
{
"id": "background2",
"type": "image",
"aspect-ratio": "vertical",
"position": "center-center",
"src": "https://images.pexels.com/photos/1459505/pexels-photo-1459505.jpeg",
"height": 1920,
"zoom": 1
},
{
"id": "text2",
"type": "text",
"text": "The End",
"position": "center-bottom"
}
]
},
{
"id": "scene3",
"comment": "Scene 3",
"duration": 2,
"elements": [
{
"id": "background3",
"type": "image",
"aspect-ratio": "vertical",
"position": "center-center",
"src": "https://images.pexels.com/photos/1459505/pexels-photo-1459505.jpeg",
"height": 1920,
"zoom": 4
},
{
"id": "text3",
"type": "text",
"text": "Conseguido",
"position": "center-bottom"
}
]
}
],
"width": 1080,
"height": 1920,
"elements": []
}
Ok, It´s Solved from the moment, is a problem with svg format