subtile-ocr 0.2.4

Converts DVD VOB subtitles to SRT subtitles with Tesseract OCR
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs ? import <nixpkgs> { } }:

pkgs.mkShell {
  nativeBuildInputs = with pkgs; [
    cargo
    pkgconfig
    rust-analyzer
    rustc
    rustfmt
    llvmPackages.clang
  ];
  buildInputs = with pkgs; [
    leptonica
    tesseract5
  ];
  LIBCLANG_PATH = pkgs.lib.makeLibraryPath [ pkgs.libclang.lib ];
}