@lee-jisoo/n8n-nodes-mediafx 1.6.10 → 1.6.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -229,6 +229,8 @@ async function executeAddSubtitle(video, subtitleFile, style, itemIndex) {
|
|
|
229
229
|
await fs.writeFile(tempAssFile, assContent, 'utf-8');
|
|
230
230
|
finalSubtitlePath = tempAssFile;
|
|
231
231
|
// Debug: log ASS content for troubleshooting
|
|
232
|
+
console.log('[MediaFX] enableBackground:', enableBackground, 'type:', typeof enableBackground);
|
|
233
|
+
console.log('[MediaFX] style.enableBackground raw:', style.enableBackground);
|
|
232
234
|
console.log('[MediaFX] Generated ASS file:', tempAssFile);
|
|
233
235
|
console.log('[MediaFX] ASS Style line:', assContent.split('\n').find(line => line.startsWith('Style:')));
|
|
234
236
|
}
|
package/package.json
CHANGED