exclude audio
Posted: Mon Dec 16, 2024 8:06 pm
Hi all,
is there any chance to disable audio from this processor?
Thanks!
is there any chance to disable audio from this processor?
Thanks!
Forum for questions and answers, bug reporting, feature requeste, and general usage
https://ffastrans.com/frm/forum/
Code: Select all
m_clip = KillAudio(m_clip)
return m_clip
Excellent!emcodem wrote: ↑Mon Dec 16, 2024 8:17 pm not directly, not that i am aware of. We can use A/V decoder and a custom avs script withCode: Select all
m_clip = KillAudio(m_clip) return m_clip
Tried that before trying killaudio, encoder complains about unkown track layout for 32 channels this way.
Code: Select all
m_clip = KillVideo(m_clip)
m_clip.TimeStretch(tempo=100.0*(24000.0/1001.0)/(25.0)).ConvertAudioToFloat()
return m_clip
Code: Select all
ResampleAudio(m_clip, 48000)
ConvertAudioToFloat()
AssumeFPS(23.976, 1, true)
TimeStretch(pitch=104)
ResampleAudio(48000)
ConvertAudioTo24bit()
m_clip=last
return m_clip