Question / Help OBS FooBar Question

keystonerjibber

New Member
Hello. I am running FooBar2000 on OBS studio. The now playing shows up, the only problem I am having is the elapsed time does not move and only catches up when it is paused. The coding I am using is this:

{
"nowplaying": {
"playing": $replace(%isplaying%,'?','0'),
"paused": $replace(%ispaused%,'?','0'),
"albumartist": "$replace(%album artist%,'"','\"','\','\\')",
"album": "$replace(%album%,'"','\"','\','\\')",
"artist": "$replace(%artist%,'"','\"','\','\\')",
"title": "$replace(%title%,'"','\"','\','\\')",
"tracknumber": $add($replace(%track number%,'?','0'),0),
"length": $replace(%length_seconds%,'?','0'),
"elapsed": $replace(%playback_time_seconds%,'?','0'),
"path": "$replace($directory_path(%path%),'"','\"','\','\\')"
},
"config": {
"fadeout": 20
}
}


Any help is always appreciated!
 
Top