You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm submitting a ...
[ ] bug report
[ ] feature request
[ ] question about the decisions made in the repository
[x] question about how to use this project
Summary
Hi @baltedewit. In the atem software control, i only see it loading;
Hey, @Everton747 check the format of your response on clip info. It must be in a very specific format for the atem to be happy.
I just spent a bunch of time searching for an issue that ended up being a double space in clips get.
Here is what works for me :
this.server.onClipsGet = (cmd) => {
var result = {
'clip count': this.app.player.assets.length.toString()
}
let i = 1;
this.app.player.assets.forEach(
asset => {
result[i] = " " + asset.name + " 00:00:00:00 "+ this.msToTime(asset.duration) ;
i = i + 1;
});
return Promise.resolve(result)
};
I'm submitting a ...
[ ] bug report
[ ] feature request
[ ] question about the decisions made in the repository
[x] question about how to use this project
Summary
Hi @baltedewit. In the atem software control, i only see it loading;
Here we've an example of my function onClipsGet:
Can you help me?
The text was updated successfully, but these errors were encountered: