mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-25 20:59:39 +01:00
Fix plugin downloader for RIFE VS, add image sequence support
This commit is contained in:
@@ -261,7 +261,7 @@ namespace Flowframes.IO
|
||||
if (key == Key.minOutVidLength) return WriteDefault(key, "5");
|
||||
if (key == Key.h264Crf) return WriteDefault(key, "20");
|
||||
if (key == Key.h265Crf) return WriteDefault(key, "24");
|
||||
if (key == Key.av1Crf) return WriteDefault(key, "27");
|
||||
if (key == Key.av1Crf) return WriteDefault(key, "28");
|
||||
if (key == Key.vp9Crf) return WriteDefault(key, "28");
|
||||
if (key == Key.proResProfile) return WriteDefault(key, "2");
|
||||
if (key == Key.aviCodec) return WriteDefault(key, "ffv1");
|
||||
|
||||
@@ -117,11 +117,11 @@ namespace Flowframes.IO
|
||||
return IsFileValid(path);
|
||||
}
|
||||
|
||||
public static void CopyDir(string sourceDirectoryName, string targetDirectoryName, bool move = false)
|
||||
public static void CopyDir(string sourceDirectory, string targetDirectory, bool move = false)
|
||||
{
|
||||
Directory.CreateDirectory(targetDirectoryName);
|
||||
DirectoryInfo source = new DirectoryInfo(sourceDirectoryName);
|
||||
DirectoryInfo target = new DirectoryInfo(targetDirectoryName);
|
||||
Directory.CreateDirectory(targetDirectory);
|
||||
DirectoryInfo source = new DirectoryInfo(sourceDirectory);
|
||||
DirectoryInfo target = new DirectoryInfo(targetDirectory);
|
||||
CopyWork(source, target, move);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user