ercanserteli / condenser

Condenser allows you to extract speech audio from video files, based on subtitle timings. By omitting the audio outside of speech, it increases the language per second that you are getting exposed to.
https://ercanserteli.com/condenser
GNU General Public License v3.0
33 stars 7 forks source link

External folder #5

Closed Geniusssmit closed 6 months ago

Geniusssmit commented 2 years ago

Is it possible to condense single files to external folder instead of folder where file exists?

Geniusssmit commented 6 months ago

thank you very much for implementing this! Will you upload an update soon? btw I noticed 1 thing I can recommend adding to config.json by default

  "filtered_characters": "♩♪♫♬~〜",

this second "〜" character is a different one, and I encountered it a few time in some subtitles. So it would be nice if you add as a default.

ercanserteli commented 6 months ago

Yes, I will release an update soon, and thanks for the recommendation I will add it to the default config

ercanserteli commented 6 months ago

v1.5.0 is released!

Geniusssmit commented 6 months ago

cool new features, but unfortunately it's not working for me at all, even with default settings :( image

Geniusssmit commented 6 months ago

Sorry I mean setting "fixed_output_dir": "E:\Condensed_Audio", crashes it

ercanserteli commented 6 months ago

I think it's because in json \ character is used for escape sequences, so you need to write either "E:\\Condensed_Audio" or "E:/Condensed_Audio"

Geniusssmit commented 6 months ago

yes, that helped, thanks