Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#21 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
I don't know how your script looks, but a simple FFMS2 script would look like:
Code:
V = FFVideoSource("C:\Some Path\input.foo")
A = FFAudioSource("C:\Some Path\input.foo")
AudioDub(V,A)
I would recommend to use DGDecodeNV for accessing TS files, but you'll have to buy it (and it needs an NVidia card). DGAVCIndex is a dead project and has various problems that won't ever get fixed... BTW: You know that you can hit "Edit" instead of writing several posts in sequence !?
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#22 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
Code:
LoadPlugin("C:\Users\Owner\Desktop\pack\DG\DGAVCDecode.dll")
Load_STDCall_Plugin("C:\Program Files (x86)\AviSynth 2.5\plugins\yadif.dll")
AVCSource("post.dga")
ConvertToYV12()
Yadif(0,1)
Lanczos4Resize(704,400,6,6,-6,-6)
|
|
|
|
|
|
|
#23 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
Throw out the AVCSource() and instead insert the code that I just posted. Of course you would give FFVideoSource() the original video file, not the DGA file.
Also throw out the LoadPlugin(). Or, if FFMS2.dll is not located directly in your Avisynth plug-in's folder, change the LoadPlugin() to load FFMS2.dll instead of DGAVCDecode.dll.
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#24 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
Load_STDCall_Plugin("C:\Program Files (x86)\AviSynth 2.5\plugins\yadif.dll") FFVideoSource("post.ts") ConvertToYV12() Yadif(0,1) Lanczos4Resize(704,400,6,6,-6,-6) |
|
|
|
|
|
|
#25 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
If you don't need to load FFMS2.DLL explicitely (because it is in your Avisynth "plugins" folder) and if the file "post.ts" is located in the same folder as your AVS file, then yes.
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#27 | Link |
|
Software Developer
![]() Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,275
|
So obviously you do NOT have the required plug-in DLL in your Avisynth "plugins" folder
![]() Put the DLL in place or load it explcitely via LoadPlugin() from wherever it is located...
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊ |
|
|
|
|
|
#28 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
s\yadif.dll (post_x264.avs, line 2) x264 [error]: could not open input file `post_x264.avs' Line 2 : Load_STDCall_Plugin("C:\Program Files (x86)\AviSynth 2.5\plugins\yadif.dll") Last edited by wcwman18; 6th August 2012 at 16:21. |
|
|
|
|
|
|
#30 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
Is ffms2-x64.dll the proper plugin? Last edited by wcwman18; 6th August 2012 at 16:37. |
|
|
|
|
|
|
#32 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
(C:\Users\Owner\Desktop\AVSMeter1.21\AVSMeter1.21\post_x264.avs, line 1) LoadPlugin("C:\Program Files(x86)\AviSynth 2.5\plugins\ffms2.dll") Load_STDCall_Plugin("C:\Program Files (x86)\AviSynth 2.5\plugins\yadif.dll") FFVideoSource("post.ts") ConvertToYV12() Yadif(0,1) Lanczos4Resize(704,400,6,6,-6,-6) PROCESS EXITED WITH ERROR CODE: 1 |
|
|
|
|
|
|
#34 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
LoadCPlugin(C:\Program Files(x86)\AviSynth 2.5\plugins\ffms2.dll)/Load_STDCall_Plugin(C:\Program Files (x86)\AviSynth 2.5\plugins\yadif.dll) FFVideoSource("post.ts") ConvertToYV12() Yadif(0,1) Lanczos4Resize(704,400,6,6,-6,-6) I get an error could not open line 1 column 14 Last edited by wcwman18; 6th August 2012 at 18:06. |
|
|
|
|
|
|
#35 | Link |
|
Registered User
Join Date: Dec 2002
Posts: 5,565
|
The slash ( "/" ) was meant as "either or", not an actual slash.
http://avisynth.org/mediawiki/Plugins |
|
|
|
|
|
#36 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
Load_STDCall_Plugin(ffms2.dll) Load_STDCall_Plugin(yadif.dll) FFVideoSource("post.ts") ConvertToYV12() Yadif(0,1) Lanczos4Resize(704,400,6,6,-6,-6) Last edited by wcwman18; 6th August 2012 at 18:25. |
|
|
|
|
|
|
#40 | Link | |
|
Registered User
Join Date: Jul 2002
Posts: 107
|
Quote:
(post_x264.avs, line 1) x264 [error]: could not open input file 'post_x264.avs' Load_STDCall_Plugin("ffms2.dll") Load_STDCall_Plugin(yadif.dll) FFVideoSource("post.ts") ConvertToYV12() Yadif(0,1) Lanczos4Resize(704,400,6,6,-6,-6) |
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|