BestAudioSource
From Avisynth wiki
(Difference between revisions)
m (→Examples) |
(add archived downloads section) |
||
Line 28: | Line 28: | ||
<br> | <br> | ||
::{{Par2|adjustdelay|int|-1}} | ::{{Par2|adjustdelay|int|-1}} | ||
− | :::Delay adjustment. | + | :::Delay adjustment; not yet implemented. |
<br> | <br> | ||
::{{Par2|exactsamples|bool|false}} | ::{{Par2|exactsamples|bool|false}} | ||
Line 34: | Line 34: | ||
<br> | <br> | ||
::{{Par2|varprefix|string|""}} | ::{{Par2|varprefix|string|""}} | ||
− | ::: | + | :::Works the same as [[FFMS2]]. |
<br> | <br> | ||
Line 47: | Line 47: | ||
test2 2020/01/08 - Fixed output and new parameter "exactsamples" | test2 2020/01/08 - Fixed output and new parameter "exactsamples" | ||
test1 2020/01/07 - Initial release | test1 2020/01/07 - Initial release | ||
+ | <br> | ||
+ | == Archived Downloads == | ||
+ | {| class="wikitable" border="1"; width="700px" | ||
+ | |- | ||
+ | !!width="100px"| Version | ||
+ | !!width="200px"| Download | ||
+ | !!width="200px"| Mirror | ||
+ | !!width="200px"| Source code | ||
+ | |- | ||
+ | !test3 | ||
+ | |[https://www.dropbox.com/s/cl5nudu1bud2nct/bestaudiosource-test3.7z?dl=1 bestaudiosource-test3.7z] | ||
+ | |[https://web.archive.org/web/20200523045527if_/https://files.videohelp.com/u/223002/bestaudiosource-test3.7z bestaudiosource-test3.7z] | ||
+ | |[https://web.archive.org/web/20200523045802if_/https://files.videohelp.com/u/223002/bestaudiosource-master.zip bestaudiosource-master.zip] | ||
+ | |} | ||
<br> | <br> | ||
== External Links == | == External Links == |
Revision as of 04:00, 23 May 2020
Abstract | |
---|---|
Author | Myrsloik |
Version | test3 |
Download | bestaudiosource-test3.7z |
Category | Source filters |
License | Open source |
Discussion | Doom9 Thread |
Contents |
Description
A new sample accurate but somewhat slow FFmpeg based audio source filter for AviSynth+. No indexing required and only available in 64-bit.
Requirements
- [x64] AviSynth+
Syntax and Parameters
- BestAudioSource (string "source", int "track", int "adjustdelay", bool "exactsamples", string "varprefix")
- string source =
- Path to audio file. Path can be omitted if the script is in the same folder as the audio file.
- string source =
- int track = -1
- Positive track numbers refer to the FFmpeg given stream number. Negative numbers refer to the nth audio track with -1 being the first.
- int track = -1
- int adjustdelay = -1
- Delay adjustment; not yet implemented.
- int adjustdelay = -1
- bool exactsamples = false
- Set to true if you want opening files to be really slow but for some reason need a completely sample exact length.
- bool exactsamples = false
- string varprefix = ""
- Works the same as FFMS2.
- string varprefix = ""
Examples
BestAudioSource("blah.mp4", track=-1, adjustdelay=-1, exactsamples=false, varprefix="")
Changelog
Version Date Changes
test3 2020/01/26 - Fixes the channel mask variable that was previously almost always wrong in AviSynth. - Also add VapourSynth support. test2 2020/01/08 - Fixed output and new parameter "exactsamples" test1 2020/01/07 - Initial release
Archived Downloads
Version | Download | Mirror | Source code |
---|---|---|---|
test3 | bestaudiosource-test3.7z | bestaudiosource-test3.7z | bestaudiosource-master.zip |
External Links
- GitHub - Source code repository.
Back to External Filters ←