Raspbian上で確認(Ver未確認) また、
sudo apt-get install raspberrypi-kernel-headers build-essential git dkms
sudo apt-get upgrade
してある前提です。
一応いっておくけどV1-V3間でモジュール全部違うっぽいので別の人は調べてね
| import os.path | |
| import re | |
| bookmarks = avsp.GetBookmarkList() | |
| bookmarks.sort() | |
| filename = avsp.GetScriptFilename(propose='general') | |
| qpfile = str(re.sub(r'avs','',filename) + "qpfile") | |
| with open(qpfile,"w") as f: | |
| for item in bookmarks: |
| ------------------------------------------------------------------------------ | |
| CrystalDiskMark 8.0.0 Shizuku Edition x64 (C) 2007-2020 hiyohiyo | |
| Crystal Dew World: https://crystalmark.info/ | |
| ------------------------------------------------------------------------------ | |
| * MB/s = 1,000,000 bytes/s [SATA/600 = 600,000,000 bytes/s] | |
| * KB = 1000 bytes, KiB = 1024 bytes | |
| [Read] | |
| SEQ 1MiB (Q= 8, T= 1): 2386.088 MB/s [ 2275.6 IOPS] < 3513.36 us> | |
| SEQ 128KiB (Q= 32, T= 1): 2382.552 MB/s [ 18177.4 IOPS] < 1759.64 us> |
memo
ここが参考になるっぽい
AviSynthCUDAFilters/build_help.txt at master · pinterf/AviSynthCUDAFilters
最初にNVIDIAのCUDA ToolkitとVS2019を入れておく
CUDA Toolkit 11.2 Update 1 Downloads | NVIDIA Developer
AviSynth/AviSynthPlus: AviSynth with improvements
はCMakeFileをVS2019に食わせてENABLE_CUDAフラグ立ててビルド
| MurdocCutter19g1.zip :http://web.archive.org/web/20140105061513/http://itsadirect.site90.com/dlf.php?file=MurdocCutter19g1.zip | |
| SHA256: 47E4FC3260F06DEF59D35157716DF131D80E002247440FB2D44B209A490DBB3D | |
| SHA1: BD11B29AE548F8C0E68CF6F45B8C34669F247091 |
| diff --git a/source/input/avs.cpp b/source/input/avs.cpp | |
| index c84dd9b9b..3db615f56 100644 | |
| --- a/source/input/avs.cpp | |
| +++ b/source/input/avs.cpp | |
| @@ -77,6 +77,11 @@ void AVSInput::info_avs() | |
| void AVSInput::openfile(InputFileInfo& info) | |
| { | |
| + //thx http://csbarn.blogspot.com/2013/07/multibytetowidechartomultibyte_8.html | |
| + wchar_t real_filename_wchar[MAX_PATH * 4]; |
| diff --git a/LibISDB/Windows/Viewer/ViewerEngine.cpp b/LibISDB/Windows/Viewer/ViewerEngine.cpp | |
| index 3bf1841..aade311 100644 | |
| --- a/LibISDB/Windows/Viewer/ViewerEngine.cpp | |
| +++ b/LibISDB/Windows/Viewer/ViewerEngine.cpp | |
| @@ -162,6 +162,9 @@ bool ViewerEngine::IsSelectableService(int Index) const | |
| if (m_pAnalyzer == nullptr) | |
| return false; | |
| + if (m_pAnalyzer->GetDataCarrouselESCount(Index) > 0) | |
| + return true; |