aboutsummaryrefslogtreecommitdiff
path: root/transcoder/src/bin/reproduce_decode_error.rs
blob: 3e0ca3ae176724ddc84d0330aeee25817827a470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use jellytranscoder::image::transcode;

#[tokio::main]
async fn main() {
    transcode(
        jellycommon::AssetLocation::Cache(std::env::args().nth(2).unwrap().into()),
        1.0,
        1,
        1,
    )
    .await
    .unwrap();
}