-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
43 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "scenesplit"
version = "1.1.5"
edition = "2021"
authors = ["SceneSplit Team"]
description = "Offline CLI tool that extracts semantically distinct still images from video"
license = "MIT"
repository = "https://github.com/wilmoore/scenesplit"
homepage = "https://github.com/wilmoore/scenesplit"
readme = "README.md"
keywords = ["video", "keyframes", "semantic", "extraction", "cli"]
categories = ["command-line-utilities", "multimedia::video"]
[dependencies]
# CLI
clap = { version = "4.4", features = ["derive"] }
# Video processing
opencv = { version = "0.98", default-features = false, features = ["videoio", "imgcodecs", "imgproc"] }
# ML inference
ort = { version = "2.0.0-rc.9", default-features = false, features = ["load-dynamic"] }
ndarray = "0.16"
# Image processing
image = "0.24"
# Utilities
thiserror = "2.0"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dirs = "5.0"
ureq = "2.10"
indicatif = "0.17"
[dev-dependencies]
tempfile = "3.14"
[profile.release]
lto = true
codegen-units = 1
strip = true