FallingSnow / h265ize

A node utility utilizing ffmpeg to encode videos with the hevc codec.
MIT License
527 stars 81 forks source link

Subfolders #98

Closed mrsieb closed 7 years ago

mrsieb commented 7 years ago

If the Movies are in Named Subfolders how to keep this folder structure ? and it seems like the --stat cvs file does just keep one entry of a subfolder, means /Movie/Foo1/Foo1-trailer.mkv /Movie/Foo1/Foo1-movie.mkv

just the first is listed in the cvs file

FallingSnow commented 7 years ago

I'm not sure if I understand your question correctly. You are trying to maintain the same directory structure as your input directory? That is possible. If your videos are in a structure of

/movies/movie1/movie1.mp4
/movies/movie1/movie1-trailer.mp4
/movies/movie2/movie2.mp4

h265ize movies -d ./movies_h265 should result in

/movies_h265/movie1/movie1.mkv
/movies_h265/movie1/movie1-trailer.mkv
/movies_h265/movie2/movie2.mkv

If it is not working as expected, try https://github.com/FallingSnow/h265ize#bleeding-edge

Does that answer your question?

mrsieb commented 7 years ago

thx for response i will give them a try again and will report...

mrsieb commented 7 years ago

well everything is fine now thx!

FallingSnow commented 7 years ago

Great!