inlife / nexrender

📹 Data-driven render automation for After Effects

Home Page:https://www.nexrender.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Special chars not visibile after rendering

PeppeDotNet opened this issue · comments

Dear all,
we are using nexrender to substitute some text in a video and we have issues with special characters.
Here the script we use:

{
"template": {
"src": "file:///f:/file.aep",
"composition": "NAME"
},
"assets": [
{
"type": "data",
"layerName": "LAYERNAME",
"property": "Source Text",
"value": "Inténtalo tu!"
}
],
"actions": {
"postrender": [
{
"module": "@nexrender/action-encode",
"output": "output.mp4",
"preset": "mp4"
},
{
"module": "@nexrender/action-copy",
"input": "output.mp4",
"output": "e:/output.mp4"
}
]
}
}

The result in the video is the following:
image

So, is there a way to insert special characters in a text layer?

commented

I am not too familiar with Nexrender but that seems like a font problem. Are you sure the font you are using supports that?

I tried to add the same text directly inside After Effects and it works, so it is not a font issue.
After some troubleshooting, I figured out that is needed UTF8 encoding for those special chars.
Here is the resolution:

"value":"Inténtalo tu!"

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.