Audio stream in AVS script

Support forum for DGDecNV
Post Reply
DAE avatar
Guest 2
Posts: 903
Joined: Mon Sep 20, 2010 2:18 pm

Audio stream in AVS script

Post 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.
User avatar
Rocky
Posts: 3621
Joined: Fri Sep 06, 2019 12:57 pm

Audio stream in AVS script

Post 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, ...)
DAE avatar
Guest 2
Posts: 903
Joined: Mon Sep 20, 2010 2:18 pm

Audio stream in AVS script

Post by Guest 2 »

Rocky wrote:
Thu Oct 26, 2023 12:28 pm
Basic idea
Ok, thank you. That was my second choice.
Post Reply