View Single Post
  #1017  
Old 29.11.2019, 13:59
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,553
Default

Quote:
Originally Posted by Tom View Post
- if audio stream=ger and ac3, just copy the stream -c:a "copy"
Stream #0:1(ger): Audio: ac3,
now it converts it again to ac3
While I do not have an updated versions of your script, I think the script converts the file only if the audio is dts.
Code:
if (callSync(ffprobe, "-i", file).indexOf("Audio: dts") == -1) return;

Quote:
Originally Posted by Tom View Post
if 2 files have been created and first file progressed by ffmpeg, will second file also executed at the same time file by file?
I am not sure about it. You can check the list of running processes to see if multiple copies of ffmpeg are running simultaneously.
Reply With Quote