Page 1 of 1

Audio stream in AVS script

Posted: Thu Oct 26, 2023 11:22 am
by Guest 2
AVS allows to work with audio in a similar way that we use with video.

Is possible to have the "audio track" of the stream, such as LWLibav does with LWLibavAudioSource?

I want to trim different episodes of the same series, to create a sort of movie but I was asking myself if it's feasible with DGDecNV.

Audio stream in AVS script

Posted: Thu Oct 26, 2023 12:28 pm
by Rocky
Basic idea:

1. Index while demuxing the audio track,
2. Script pseudocode:

video=DGSource()
audio=appropriate_audio_source_filter()
combined=AudioDub(video,audio)
Trim(combined, ...)

Audio stream in AVS script

Posted: Thu Oct 26, 2023 1:34 pm
by Guest 2
Rocky wrote:
Thu Oct 26, 2023 12:28 pm
Basic idea
Ok, thank you. That was my second choice.