Search found 225 matches

by ThomasM
Thu Nov 24, 2022 7:40 am
Forum: Usage, tips and tricks
Topic: replace audio on video
Replies: 16
Views: 2860

Re: replace audio on video

Yeah, I got ffmpeg.exe in PATH for using it quick and got it handy on CMD. @authorleon, try your Command-Executor-Node Codes in the windows-commandline. That is faster and easier to debug. If that works, copy the line to your Node. then, one after one, try to exchange the full paths with variables. ...
by ThomasM
Mon Nov 21, 2022 12:15 pm
Forum: Usage, tips and tricks
Topic: replace audio on video
Replies: 16
Views: 2860

Re: replace audio on video

Hi authorleon,

Code: Select all

ffmpeg -i "%s_original_full%" -i "PathOfAudio.Here" -c:v copy -map 0:v:0 -map 1:a:0 -shortest "NewPathAndNameOfOutputFile.Here"
in a Command Executor coul do the trick.

Just an idea...

Thomas
by ThomasM
Thu Sep 22, 2022 7:18 pm
Forum: Usage, tips and tricks
Topic: Concatenate
Replies: 30
Views: 6579

Re: Concatenate

Hi Taner, just "mark" the folder "Occupied" with a simple .TXT-File Monitor-Node -> Conditional-Node "IF $exists("%s_original_path%\OCCUPIED.TXT") = 0 THEN -> TRUE: Generate-Text-Node -> Go On with your Workflow FALSE: DISPEL JOB (Marker-Field lower-Left). This sho...
by ThomasM
Mon Aug 22, 2022 8:17 am
Forum: Usage, tips and tricks
Topic: Delete watchfolder directories/subdirectories after Processing all Files
Replies: 6
Views: 2769

Re: Delete watchfolder directories/subdirectories after Processing all Files

Hey Borky, in the Conditional-Node try to find only your Audio-Files like $exists("%s_original_path%\*.FLAC") or $exists("%s_original_path%\*.wav") in the following Executor-Node the command %comspec% /C "RD /S /Q"D:\TEST\%s_recursed_path%"" will delete the Fo...
by ThomasM
Mon Aug 22, 2022 7:44 am
Forum: Usage, tips and tricks
Topic: Delete watchfolder directories/subdirectories after Processing all Files
Replies: 6
Views: 2769

Re: Delete watchfolder directories/subdirectories after Processing all Files

Hey Borky, Sorry for confusing - but... I tested a bit. Especially when you use multiple Job Slots (Options -> Configuration -> Host) the workflow may run into trouble as it processes the original folder multiple times. I send a Workflow along which worked for me. It has a double RD-Command-Executor...
by ThomasM
Thu Aug 18, 2022 11:20 am
Forum: Usage, tips and tricks
Topic: Delete watchfolder directories/subdirectories after Processing all Files
Replies: 6
Views: 2769

Re: Delete watchfolder directories/subdirectories after Processing all Files

Hey Borky, As I understand the Robocopy-Command it only deletes EMPTY folders by MOVING the original Path OVER the destination path (which are the same). So a soulution could be to execute the command twice - so use two nodes to delete both folders... p.s.: be aware, that also other empty folders wi...
by ThomasM
Fri May 06, 2022 12:21 pm
Forum: Usage, tips and tricks
Topic: Video Quality node
Replies: 2
Views: 1454

Re: Video Quality node

He Wahyu, for example: imagine a workflow where you compress a Master-File (e.g. DNxHR or ProRES HW) to H264 or H265. With this node you can compare the original with the compressed files. The result for VMAF (The "Netflix-Algo") <20 poor > 40 fair, >60 ok >80 good and up to 100 excellent,...
by ThomasM
Fri Mar 25, 2022 12:48 pm
Forum: Usage, tips and tricks
Topic: Converting and Processing Audio
Replies: 47
Views: 19023

Re: Converting and Processing Audio

ooops... emcodem was faster....
by ThomasM
Fri Mar 25, 2022 7:29 am
Forum: Usage, tips and tricks
Topic: Converting and Processing Audio
Replies: 47
Views: 19023

Re: Converting and Processing Audio

Hey PA,

try the attached workflow. I added the OUT-Filename as the new source in the watson-Node.

Hope this helps...

tom
by ThomasM
Thu Mar 17, 2022 12:52 pm
Forum: Usage, tips and tricks
Topic: Converting and Processing Audio
Replies: 47
Views: 19023

Re: Converting and Processing Audio

Hi PA79, no - sorry - I´m Not Thomas Mundt. First - Try your CommandLine in the Windows built-in Commandexecutor / Shell. If the command works there, it will work in the FFAStrans-Node. Second - Your code has a space in the Filename: "%s_source%" .mp3" maybe "%s_source%" wor...