simonalexanderson / ListenDenoiseAction

Code to reproduce the results for our SIGGRAPH 2023 paper "Listen Denoise Action"
Other
147 stars 21 forks source link

waht's the difference between two pkl file corresponding to one audio #11

Open X-niper opened 7 months ago

X-niper commented 7 months ago

Hi, thanks for the great work. May I know why there are two pkl files corresponding to one audio file? What's the difference between the two pkl files, like kthstreet_gKR_sFM_cAll_d01_mKR_ch01_chargedcableupyour_001_00.audio29_30fps.pkl and kthstreet_gKR_sFM_cAll_d01_mKR_ch01_chargedcableupyour_001_01.audio29_30fps.pkl . If they are both extracted from kthstreet_gKR_sFM_cAll_d01_mKR_ch01_chargedcableupyour_001.wav, why are they different?

simonalexanderson commented 7 months ago

These are interleaved time series, downsampled from 60->30fps, i.e frames 0,2,4… and 1,3,5,… respectively. This was done to match mocap frame rates.

X-niper commented 7 months ago

These are interleaved time series, downsampled from 60->30fps, i.e frames 0,2,4… and 1,3,5,… respectively. This was done to match mocap frame rates.

Thank you so much for your reply!