You have created one video file without audio:
X:\some_path\your_file.m4v
You have created one audio file without video:
X:\some_path\your_file.m4a
Both within the same workflow. Is this correct? If so, your normal ffmpeg command to merge the two files would be:
X:\my_ffmpeg_folder\ffmpeg.exe -i "X:\some_path\your_file.m4v" -i "X:\some_path\your_file.m4a" -c:v -copy -c:a copy "X:\output_path\your_file.mp4"
This is common ffmpeg usage and has nothing to do with FFAStrans. Implemented using the "Command executor"-node:
%comspec% /c ""X:\my_ffmpeg_folder\ffmpeg.exe" -i "X:\some_path\your_file.m4v" -i "X:\some_path\your_file.m4a" -c:v -copy -c:a copy "X:\output_path\your_file.mp4""
Another approach would be to create a new workflow monitoring *.m4v and add the "Custom FFmpeg"-preset from previous post:
-i "%s_original_path%\%s_original_name%.m4a" -c:v -copy -c:a copy
Remember to specify mp4 as extension in your preset.
In either cases you will probably need to use variables like %s_original_name% and %s_original_path% in order to get most out of your workflow. Learning how to use variables is the key to the power of FFAStrans

-steipal