Just trying to use this in a very basic example as follows
const castro = require('castro')
const movie = new castro.Castro();
movie.setLocation('/Users/Me/Movies/totes-epic.mp4')
movie.start();
setTimeout(() => {
movie.stop()
},4000);
I am not getting any errors, and I even see the file that was generated in the movies folder as expected. When I try to play the video however, it wont open.
Any ideas?