chore: Allow to change cwd of transcoder ffmpeg #34
+63
−26
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As mentioned earlier, I want to support 2 pass VP9 encoding in my app, and the process produces a logfile in the current working directory.
Could have either somehow managed to pass an absolute path to the encoder, but it would have been a bit complicated or would have broken the re-usability of presets
Or I could just
chdirthe spawned process.I went for the latter. This add a bit more code that I'd have liked, but when I added the spawn opt to FFMPEG::IO methods, I thought it would be better to add the option everywhere for homogeneity of the interface.
WDYT ?