Search found 573 matches

by momocampo
Sat Jun 17, 2023 9:48 am
Forum: Usage, tips and tricks
Topic: Growing Files Processing Too Early
Replies: 3
Views: 1221

Re: Growing Files Processing Too Early

Hi Graham, LIke said FranceBB, if you are sure 4gb will be the biggest size of your files and if you know it will take 3 min max, set your sleep timer to 240 and it's gonna be good. It will not very optimized workflow cause you will wait 4 minutes even for a small file. Second way is to localize fil...
by momocampo
Tue Jun 13, 2023 7:59 pm
Forum: Feature requests
Topic: File to finish writing
Replies: 11
Views: 4634

Re: File to finish writing

Hello Luzimarsorgi, Like Emcodem said, try the "check growing" option in the monitor folder and to complete his answer, here is the manual description for this option: "The speed of the cycle is defined by the sleep timer setting in the workflow properties. once : This option will mak...
by momocampo
Mon Jun 12, 2023 7:24 am
Forum: Usage, tips and tricks
Topic: Functions in Populate Variable Node
Replies: 2
Views: 1060

Re: Functions in Populate Variable Node

Hi Lukas,
I think you forgot quotes for values, you should try like this :

Code: Select all

$readarray("[-5.086133,-5.086133]", 1)
And the "1" behind values isn't necessary for you cause it's the default behaviour.So without, it will return the first value.


Cheers.
by momocampo
Thu Jun 01, 2023 7:22 pm
Forum: Usage, tips and tricks
Topic: Mix all channels down to one stereo track
Replies: 13
Views: 6543

Re: Mix all channels down to one stereo track

No problem Railio ;)
You won't find everything in the documentation but we try to add as many things as possible.
You should take a look, there are a lot of interesting things :)
cheers ;)
by momocampo
Mon May 29, 2023 9:26 am
Forum: Usage, tips and tricks
Topic: Clear history of Status Monitor
Replies: 2
Views: 1058

Re: Clear history of Status Monitor

Hello Ray, You can right-click on jobs list and select "reset log", but you're gonna lose all jobs. You can also specify how many jobs you want to keep in monitor status : Right-click on job list and select "select max list size". As said Emcodem, no matter if you keep a lot of j...
by momocampo
Mon Apr 24, 2023 8:26 am
Forum: Usage, tips and tricks
Topic: Run Batch file from Command Executor
Replies: 1
Views: 920

Re: Run Batch file from Command Executor

Hi MichaelDW96,

You can't use 2 lines, you have to use a "&" to execute 2 commands, like this :

Code: Select all

cmd /c "cd C:\Users\midso\Desktop\indexer & index-bgvid.bat"
I think it could be ok.

cheers

B.
by momocampo
Wed Feb 15, 2023 10:55 pm
Forum: Feature requests
Topic: Transfer from one folder to several
Replies: 5
Views: 3060

Re: Transfer from one folder to several

Hi Luzimarsorgi, To complete Emcodem's answer, I could add if you are sure you have only 5 possibilities, you just have to create 4 conditionnal nodes cause if the first 4 possibilities failed, it will be for sure the last one so no need conditionnal :) Anyway, as told Emcodem, please tell us more a...
by momocampo
Wed Jan 11, 2023 11:11 am
Forum: Usage, tips and tricks
Topic: Delayed compression
Replies: 5
Views: 1153

Re: Delayed compression

Hello Klerbit and welcome here ! If you want to delay some jobs, the better way is to use the webinterface : https://ffastrans.com/frm/forum/viewtopic.php?f=5&t=789 This is a really useful tool and you can do a lot of things with it. You will delay your jobs with the scheduler: set day and time ...
by momocampo
Sun Jan 08, 2023 11:17 am
Forum: Usage, tips and tricks
Topic: Correct Video Layer Setting for Transparency Channel (AVI)
Replies: 9
Views: 2416

Re: Correct Video Layer Setting for Transparency Channel (AVI)

Hi,
I think Microsoft RLE or Uncompressed 422 should be ok but check your file size cause it's gonna be huge :)
by momocampo
Sat Jan 07, 2023 2:12 pm
Forum: Usage, tips and tricks
Topic: Accept file if name exists anywhere
Replies: 3
Views: 1063

Re: Accept file if name exists anywhere

Hi AUthorleon, Don't be so hurry, it's the week-end :) Anyway, if you specify that : test*.mp4 it will be the same as test* or that test*.mov When you use * , it means EVERYTHING after your string will be accepted, extension included. If you want only mp4 files and if you don't have too many others ...