cyaoeu

Results 9 comments of cyaoeu

For just the rig/mesh I don't think it's too hard, you could use Convert to MMD compatible and Apply MMD rest pose to get the correct pose, apply the armature...

I'm having the same problem. The banks are offset by 1 in the .sf2 so the instruments are on bank 1 (instead of 0) and in the .mid file they...

I had the same issue, my problem was a 200MB md5s.txt in the appdata folder. Deleting that fixed the RAM issue and made the program start up fast again.

For 1 you can convert a folder, so just put everything in a folder and select that folder.

> I can't reproduce. It writes the png file just fine. Interesting, for me it doesn't work... > What does the crash look like? What actually happens? Are there any...

Debug button shows this in VS2017: Unhandled exception at 0x00007FF8EFEB45A7 (ntdll.dll) in vspipe.exe: 0xC0000005: Access violation reading location 0x00000020A6300000. occurred

For me it works if the folder exists and crashes if the folder doesn't, so when used with a script you need to make sure the folder exists because imwri...

Yes, the variable name doesn't matter, I used str by mistake for this issue post which obviously isn't great because str() wouldn't work but you could use any variable name...

Sorry for not responding. For me: `clip = core.imwri.Write(clip, "png", 'C:\invalidpath\file%04d.png')` crash `clip = core.imwri.Write(clip, "png", 'C:\validpath\file%04d.png')` crash `clip = core.imwri.Write(clip, "png", r'C:\invalidpath\file%04d.png')` crash `clip = core.imwri.Write(clip, "png", r'C:\validpath\file%04d.png')` works...