Well iFlicks has now moved to a subscription model and you can't set up watch folders and move to TV without a sub.
I'm happy with iFlicks2, where the watch folder works fine, but the issue is that it tries to add to iTunes (which in Catalina now doesn't exist).
A solution for this is to have a rule in iFlicks2 which would run some AppleScript to take the processed file and add it to the TV app.
Not sure myself how to do this, but I hope someone can just get me over the line for the AppleScript to put the video file into the TV app.
What I think will work is:
	
	
	
		
	
		
			
		
		
	
				
			I'm happy with iFlicks2, where the watch folder works fine, but the issue is that it tries to add to iTunes (which in Catalina now doesn't exist).
A solution for this is to have a rule in iFlicks2 which would run some AppleScript to take the processed file and add it to the TV app.
Not sure myself how to do this, but I hope someone can just get me over the line for the AppleScript to put the video file into the TV app.
What I think will work is:
		Code:
	
	on action(this_video)
 if status of this_video is Completed then
     ***this is the bit don't know - how do you put the file into the TV app?***
 end_if
 end_action