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
Even though av1an does not distribute any binaries or libraries of
DgDecNv, Donald A Graft, the author of DgDecNv, believes us to be in
violation of the license.
Therefore, this commit removes DgDecNv support.
Copy file name to clipboardexpand all lines: README.md
-1
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,6 @@ Prerequisites:
71
71
Optional:
72
72
73
73
-[L-SMASH](https://github.com/AkarinVS/L-SMASH-Works) VapourSynth plugin for better chunking (recommended)
74
-
-[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
75
74
-[ffms2](https://github.com/FFMS/ffms2) VapourSynth plugin for better chunking
76
75
-[bestsource](https://github.com/vapoursynth/bestsource) Vapoursynth plugin for slow but accurate chunking
77
76
-[mkvmerge](https://mkvtoolnix.download/) to use mkvmerge instead of FFmpeg for file concatenation
Copy file name to clipboardexpand all lines: av1an/src/main.rs
+1-7
Original file line number
Diff line number
Diff line change
@@ -44,11 +44,9 @@ fn version() -> &'static str {
44
44
* VapourSynth Plugins
45
45
systems.innocent.lsmas : {}
46
46
com.vapoursynth.ffms2 : {}
47
-
com.vapoursynth.dgdecodenv : {}
48
47
com.vapoursynth.bestsource : {}",
49
48
isfound(vapoursynth::is_lsmash_installed()),
50
49
isfound(vapoursynth::is_ffms2_installed()),
51
-
isfound(vapoursynth::is_dgdecnv_installed()),
52
50
isfound(vapoursynth::is_bestsource_installed())
53
51
)
54
52
}
@@ -336,10 +334,6 @@ pub struct CliOpts {
336
334
/// cause artifacts in the piped output). Slightly faster than lsmash for y4m input. Requires the ffms2 vapoursynth plugin to be
337
335
/// installed.
338
336
///
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
-
///
343
337
/// bestsource - Very slow but accurate. Linearly decodes input files, very slow. Does not require intermediate files, requires the BestSource vapoursynth plugin
344
338
/// to be installed.
345
339
///
@@ -355,7 +349,7 @@ pub struct CliOpts {
355
349
/// segment - Create chunks based on keyframes in the source. Not frame exact, as it can only split on keyframes in the source.
356
350
/// Requires intermediate files (which can be large).
0 commit comments