This fixes the issue for me.
Thanks to you and steinar!
Now my testing for my custom plugin processor is complete and works.
Search found 11 matches
- Fri Oct 27, 2023 2:30 pm
- Forum: Usage, tips and tricks
- Topic: Custom FFMPEG Processor s_source
- Replies: 5
- Views: 3162
- Thu Oct 26, 2023 8:15 pm
- Forum: Usage, tips and tricks
- Topic: Custom FFMPEG Processor s_source
- Replies: 5
- Views: 3162
Re: Custom FFMPEG Processor s_source
If I removed the custom plugin processor and put in a populate variables processor and manually set the %s_source% simulating what the custom processor is doing the workflow works. The one thing I noticed is the ticket that is received in the original workflow's custom ffmpeg and cmd processors has ...
- Thu Oct 26, 2023 7:04 pm
- Forum: Usage, tips and tricks
- Topic: Custom Processor
- Replies: 12
- Views: 6040
Re: Custom Processor
I understand that. I use native functions a lot as well.
I have entire library of native functions that I use PInvoking with. i.e. FileCopyEx because there is no managed version of copy/move with progress.
I have entire library of native functions that I use PInvoking with. i.e. FileCopyEx because there is no managed version of copy/move with progress.
- Thu Oct 26, 2023 6:58 pm
- Forum: Usage, tips and tricks
- Topic: Custom FFMPEG Processor s_source
- Replies: 5
- Views: 3162
Custom FFMPEG Processor s_source
When s_source is set by a processor prior to a Custom FFmpeg processor, I would expect that the Custom FFmpeg processor would update the s_source after it is done transcoding. Am I wrong in thinking this? The first processor following the Custom FFmpeg processor in my workflow still shows the s_sour...
- Thu Oct 26, 2023 5:31 pm
- Forum: Usage, tips and tricks
- Topic: Custom Processor
- Replies: 12
- Views: 6040
Re: Custom Processor
Thanks for that. The cancellation should have been completed within that time frame. I found the source of my problem. I handle catching the ctrl-c a little different then in the C# plugin example. Instead of PInvoking the native SetConsoleCtrlHandler() function I add a handler to the managed Consol...
- Wed Oct 25, 2023 10:30 pm
- Forum: Usage, tips and tricks
- Topic: Webinterface
- Replies: 392
- Views: 389927
Re: Webinterface
Are you going to add FTP location capability in the next version?
- Wed Oct 25, 2023 8:56 pm
- Forum: Usage, tips and tricks
- Topic: Custom Processor
- Replies: 12
- Views: 6040
Re: Custom Processor
How much time does FFAStrans give a processor to process the CTRL-C sent to it for aborting a job. I want to handle the event to do a proper cancel and cleanup. I have implemented the functionality in my code to handle this, but am getting force killed before I can finish. It this a configurable ite...
- Tue Oct 24, 2023 8:42 pm
- Forum: Usage, tips and tricks
- Topic: Custom Processor
- Replies: 12
- Views: 6040
Re: Custom Processor
I figured out my problem. For the built-in outputs the structure in the outputs array is different. This is not very clear in the Wiki. The custom outputs structure is shown and that is what originally used. It took me digging into the force_error source to see how it was setting up the built-in out...
- Tue Oct 24, 2023 7:20 pm
- Forum: Usage, tips and tricks
- Topic: Custom Processor
- Replies: 12
- Views: 6040
Re: Custom Processor
I am setting the "s_source" outputs data entry to the downloaded file location, but the next processor (for testing a delivery processor to copy to another folder) is not using this value for the source file location. It still uses the original ftp URI source. Below is the proc_data sectio...
- Tue Oct 24, 2023 2:30 pm
- Forum: Usage, tips and tricks
- Topic: Custom Processor
- Replies: 12
- Views: 6040
Re: Custom Processor
Thanks for the feedback. I will use your suggested method on handling the null proc_data. 1. I am not trying to create a monitor plugin. I am trying to write a plugin that will process api or webinterface submitted properly formatted FTP URI's and have FFASTrans download the file to the working dire...