You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,7 @@ Prerequisites:
73
73
Optional:
74
74
75
75
-[L-SMASH](https://github.com/AkarinVS/L-SMASH-Works) VapourSynth plugin for better chunking (recommended)
76
+
-[DGDecNV](https://www.rationalqm.us/dgdecnv/dgdecnv.html) Vapoursynth plugin for very fast and accurate chunking, `dgindexnv` executable needs to be present in system path and an NVIDIA GPU with CUVID
76
77
-[ffms2](https://github.com/FFMS/ffms2) VapourSynth plugin for better chunking
77
78
-[bestsource](https://github.com/vapoursynth/bestsource) Vapoursynth plugin for slow but accurate chunking
78
79
-[mkvmerge](https://mkvtoolnix.download/) to use mkvmerge instead of FFmpeg for file concatenation
Copy file name to clipboardexpand all lines: av1an/src/main.rs
+7-1
Original file line number
Diff line number
Diff line change
@@ -44,9 +44,11 @@ fn version() -> &'static str {
44
44
* VapourSynth Plugins
45
45
systems.innocent.lsmas : {}
46
46
com.vapoursynth.ffms2 : {}
47
+
com.vapoursynth.dgdecodenv : {}
47
48
com.vapoursynth.bestsource : {}",
48
49
isfound(vapoursynth::is_lsmash_installed()),
49
50
isfound(vapoursynth::is_ffms2_installed()),
51
+
isfound(vapoursynth::is_dgdecnv_installed()),
50
52
isfound(vapoursynth::is_bestsource_installed())
51
53
)
52
54
}
@@ -334,6 +336,10 @@ pub struct CliOpts {
334
336
/// cause artifacts in the piped output). Slightly faster than lsmash for y4m input. Requires the ffms2 vapoursynth plugin to be
335
337
/// installed.
336
338
///
339
+
/// dgdecnv - Very fast, but only decodes AVC, HEVC, MPEG-2, and VC1. Does not require intermediate files.
340
+
/// Requires dgindexnv to be present in system path, NVIDIA GPU that support CUDA video decoding, and dgdecnv vapoursynth plugin
341
+
/// to be installed.
342
+
///
337
343
/// bestsource - Very slow but accurate. Linearly decodes input files, very slow. Does not require intermediate files, requires the BestSource vapoursynth plugin
338
344
/// to be installed.
339
345
///
@@ -349,7 +355,7 @@ pub struct CliOpts {
349
355
/// segment - Create chunks based on keyframes in the source. Not frame exact, as it can only split on keyframes in the source.
350
356
/// Requires intermediate files (which can be large).
0 commit comments