Search found 1658 matches

by admin
Wed Mar 20, 2024 6:38 pm
Forum: Bug reporting
Topic: ffmpeg process cpu hang?
Replies: 2
Views: 96

Re: ffmpeg process cpu hang?

Hi dries, sorry about the late reply. Could you please send your workflow and maybe some log for the job? If the process is indeed started by ffastrans it should have been killed by force. But I have seen cases where some process is impossible to kill. We're using the Windows API for such operations...
by admin
Wed Mar 20, 2024 6:31 pm
Forum: Usage, tips and tricks
Topic: Delivery folder only picks up first file from image sequence
Replies: 5
Views: 182

Re: Delivery folder only picks up first file from image sequence

Hi xaryen, sorry I'm late to the party. You're correct about the delivery does not support image sequences as such. You need to regard your image sequence as just a bunch of single files in this regard. So in that sense you just use the folder monitor. Currently there is no plans of making the deliv...
by admin
Thu Oct 26, 2023 5:33 pm
Forum: Usage, tips and tricks
Topic: Assigning a certain workflow to a specific machine in the farm
Replies: 2
Views: 2163

Re: Assigning a certain workflow to a specific machine in the farm

Hi kimble, With the current release @emcodem is right. It can only be set on the whole workflow. But the upcoming 1.4 has much more powerful features to assign not only complete workflows, but also specific nodes to specific hosts, or group of hosts. But meanwhile, all is not lost, cause you can wit...
by admin
Thu Oct 26, 2023 5:20 pm
Forum: Usage, tips and tricks
Topic: Read-only files after FTP download
Replies: 4
Views: 2376

Re: Read-only files after FTP download

Hi deburen,

It's not explicityly set by FFAStrans but it's probably the windows api function doing it. For the next release we can add a step in the FTP monitor where attributes is reset after downloading. Meanwhile try @emcodems suggestion.

Thanks for reporting! :-)

-steinar
by admin
Thu Oct 19, 2023 2:49 pm
Forum: Usage, tips and tricks
Topic: Moving/copying files
Replies: 8
Views: 2770

Re: Moving/copying files

Hi kamilion, I think the devil might be in the " Skip source verification " option which effectively disregard if the file is ready to be opened or not. So once it finds a new file it don't care if it's finished, it will just send it to the next node. So de-select this option and try again...
by admin
Mon Oct 16, 2023 8:19 pm
Forum: Usage, tips and tricks
Topic: %s_recursed_path% doesn't seem to get populated on resubmit
Replies: 4
Views: 2302

Re: %s_recursed_path% doesn't seem to get populated on resubmit

Hi kimble, Resubmit in the web interface is not the same as retry in the status monitor. Resubmit actually creates a whole new job with no prior knowledge of the initial job. That enables you to change your workflow and try the source once more with updated configuration. Retry from the status monit...
by admin
Mon Oct 16, 2023 12:31 pm
Forum: Usage, tips and tricks
Topic: Multiple videos for download
Replies: 4
Views: 2400

Re: Multiple videos for download

Yeah, luckily I have a team that can help with the forum so I can concentrate more on development. Also, I have some back issues that force me to spend less time in front of my computer. Anyway, glad the solution works for you! :-)

-steinar
by admin
Sat Oct 14, 2023 1:44 pm
Forum: Usage, tips and tricks
Topic: Transcode Farm - Processing of Node Allocation?
Replies: 3
Views: 2277

Re: Transcode Farm - Processing of Node Allocation?

Hi yekootmada, There are some logic to how the different hosts pick up jobs and in the long run there should be an even distribution modified by the resource bias on each host. So a "powerful" host is more likely to pick up a job before a "weaker" host. But for every job a host p...
by admin
Sat Oct 14, 2023 1:29 pm
Forum: Bug reporting
Topic: FFAStrans Completely Broken?
Replies: 3
Views: 3151

Re: FFAStrans Completely Broken?

Hi suncast, Since all working again after you "reinstalled" all the files from the 7z package there is a slight chance that some antivirus got a false positive on the exe_manager.exe file inside the Processors folder. If this happens again, please check if that might be the case. I have se...
by admin
Sat Oct 14, 2023 1:26 pm
Forum: Usage, tips and tricks
Topic: Multiple videos for download
Replies: 4
Views: 2400

Re: Multiple videos for download

Hi knk, This should be farily "easy" if you input always consists of space (" ") separated urls. The function $split() can split your string into an array you can then feed to the "For each" node. For example: $split("%s_webui_variable%", " ") will s...