@@ -200,6 +200,7 @@ Options:
200200 --offset < OFFSET> Skip N records (ignored if ids are specified) [default: skip none] [default: 0]
201201 --limit < LIMIT> Limit to N records (ignored if ids are specified) [default: unlimited]
202202 --skip-processed Skip previously processed items (uses local database to track processed subtitles)
203+ -l, --language < LANGUAGE> Filter subtitles by language code (e.g., en, es, fr)
203204 -h, --help Print help
204205` ` `
205206
@@ -226,6 +227,7 @@ Options:
226227 --offset < OFFSET> Skip N records (ignored if ids are specified) [default: skip none] [default: 0]
227228 --limit < LIMIT> Limit to N records (ignored if ids are specified) [default: unlimited]
228229 --skip-processed Skip previously processed items (uses local database to track processed subtitles)
230+ -l, --language < LANGUAGE> Filter subtitles by language code (e.g., en, es, fr)
229231 -h, --help Print help
230232` ` `
231233
@@ -244,3 +246,30 @@ Options:
244246 -g Use Golden-Section search [default: false]
245247 -h, --help Print help
246248` ` `
249+
250+ # # Usage Examples
251+
252+ # ## Sync all English subtitles for movies
253+
254+ ` ` ` bash
255+ bb --config config.json movies --language en sync
256+ ` ` `
257+
258+ # ## Perform OCR fixes only on Spanish subtitles for TV shows
259+
260+ ` ` ` bash
261+ bb --config config.json tv-shows --language es ocr-fixes
262+ ` ` `
263+
264+ # ## Sync specific movies by ID with language filter
265+
266+ ` ` ` bash
267+ bb --config config.json movies --ids 123,456,789 --language en sync
268+ ` ` `
269+
270+ # ## Remove hearing impaired tags from French subtitles with skip-processed
271+
272+ ` ` ` bash
273+ bb --config config.json movies --language fr --skip-processed remove-hearing-impaired
274+ ` ` `
275+
0 commit comments