Source Record

Source Record 0.4.8

Here's that section of the script:
Bash:
INDEX_SINK_0=$(     pactl   load-module     module-null-sink                                        sink_name=Meeting_Playback    format=float32  rate=48000  channels=2  channel_map=front-left,front-right  )
INDEX_SINK_1=$(     pactl   load-module     module-null-sink                                        sink_name=Meeting_Return      format=float32  rate=48000  channels=2  channel_map=front-left,front-right  )
INDEX_SOURCE_0=$(   pactl   load-module     module-null-sink      media.class=Audio/Source/Virtual  sink_name=Meeting_Mics        format=float32  rate=48000  channels=2  channel_map=front-left,front-right  )
INDEX_SOURCE_1=$(   pactl   load-module     module-null-sink      media.class=Audio/Source/Virtual  sink_name=Meeting_Send        format=float32  rate=48000  channels=2  channel_map=front-left,front-right  )
INDEX_SOURCE_2=$(   pactl   load-module     module-null-sink      media.class=Audio/Source/Virtual  sink_name=Meeting_Rtn_Proc    format=float32  rate=48000  channels=2  channel_map=front-left,front-right  )
INDEX_SOURCE_3=$(   pactl   load-module     module-null-sink      media.class=Audio/Source/Virtual  sink_name=Meeting_Record      format=float32  rate=48000  channels=2  channel_map=front-left,front-right  )

pactl   set-default-sink    Meeting_Playback
pactl   set-default-source  Meeting_Mics
...
Now that I've posted it here, I suppose one thing to try might be the format. I picked float32 because its deficiencies are completely negligible even if it's abused, but the processing is such that 16-bit integer won't be abused either. And if I remember right, the recording in OBS is 16-bit integer anyway, lossless *after* that conversion because FLAC.
format=s16 didn't change anything.
 
I am Fuming. I lost 10 HOURS OF RECORDED FOOTAGE, all because this plugin doesn't add name extensions to the file it saves, such as "Gameplay.mkv, Gameplay(1).Mkv, or use date and time stamps like NORMAL OBS DOES. Ruined my whole day.
 
I am Fuming. I lost 10 HOURS OF RECORDED FOOTAGE, all because this plugin doesn't add name extensions to the file it saves, such as "Gameplay.mkv, Gameplay(1).Mkv, or use date and time stamps like NORMAL OBS DOES. Ruined my whole day.
Okay, it was/wasn't my fault. I followed a shitty tutorial that said to change the formatting name. Sorry for venting my frustration before stopping and thinking it out. This was a great opportunity to learn a lesson in temperance. I apologize.
 
Back
Top