subashk1980
New Here
subashk1980
New Here
Activity
‎Jun 08, 2015
07:48 AM
Hi, I am developing One Adobe Premiere Pro Exporter Plugin. Working version: Adobe Premiere Pro 2014. As per the Premiere Pro SDK document, I installed MSVC & Adobe Premiere Pro 2014 in One machine. I set all the environment variables and started my Exporter plugin development. My Final output has, Exporteri265.prm, + 2 x DLL files. In the PC where I developed the exporter, I copied Exporteri265.prm to C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\Plug-ins\Common and 2 x DLL files to C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\ In My development PC(where it has MSVC + Premiere Pro 2014), all works fine. Premiere Pro is able to load the plugin. Recently we purchased one more license and installed in a Test PC (Only Premiere Pro, No MSVC). In this machine I copied the executable in the same way. But Premiere Pro is not loading my plugin. It gives one loading error (Log File). Loading C:\Program Files\Adobe\Adobe Premiere Pro CC 2014\Plug-ins\Common\Exporteri265.prm Invalid registry entry found so the plugin will be loaded from disk. Loading from disk... The library could not be loaded. The same technique works fine in my development PC. But not in Test PC. I checked all the registry settings. HKEY_LOCAL_MACHINE. I also moved my .prm to C:\Program Files\Adobe\Common\Plug-ins\7.0\MediaCore. Not working. Can somebody help me?? What is missing in my approach?? Regards, Subash
... View more
‎Jun 08, 2015
07:11 AM
Hi Zac, I solved this issue. It hanged in my modified code only. Actually I was not closing my Encoder, I was opening my Encoder in exSDKBeginInstance () and closing it in exSDKEndInstance. When Cancel is Pressed by the user, the exSDKEndInstance was not called, so my Encoder was not closed. Fix, I moved both Open/Close of Encoder code to exSDKExport(). Regards, Subash
... View more
‎May 12, 2015
01:43 AM
Hi I am working on Adobe Premiere Pro CC r2 plug-in SDK to develop HEVC_Encoder exporter plug-in. I modified SDK_Exporter example to integrate our H.265 Encoder. I have done most of the job, I am able to get H.265 encode working. But I am unsuccessful in getting the CANCEL working. First, I worked with SDK_Exporter example. When the cancel button is pressed, it enters the "exportReturn_Abort" condition and it breaks, but it is not able to return from the function (RenderAndWriteAllVideo) to main function (exSDKExport). It Hangs and no response. Secondly, I created a thread to update the "progress" from the main function (exSDKExport). the progress the periodically update by calling "UpdateProgressPercent". when the user intend to cancel "exportReturn_Abort", the "progress" thread return to the main function (exSDKExport) and performs the rest of the code in the main function, after that the function (exSDKEndInstance) is not called to release all the suits & to perform the closing sequence. The Next RUN doesn't work properly. Please help me to implement CANCEL facility in my Adobe Exporter plug-in. Thanks in Advance Thanks Subash
... View more