Muting sequencer tracks with Blueprints/Python

Hello,

I’ve seen a couple posts on here about the ability to mute/solo tracks in Sequencer through Python and/or Blueprints. [Content removed] and [Content removed] Both of those haven’t been updated in a couple years, so I wanted to reach out and see if there are any updates. Looking through the Python documentation, I didn’t see anything that looked like it, but I could’ve always missed something. Is the best approach still to try and roll our own plugin? This feature would be really helpful for our previs workflows.

Thanks!

Gabe

Hello! Sadly, we still haven’t exposed muting/soloing to Python or Blueprint, but since you’re not the only one asking for it, we currently have this work scheduled for 5.7

In the meantime, yes writing a custom plugin that uses the C++ API to expose it to Blueprint is one way to go.

Hi! A plugin is the way to go. The two avenues worth considering are whether you want to expose muting to Python or to Blueprint.

For the Python route, I was told that this was a good resource to start from: [Content removed]

Hi Ludovic, thanks for the reply. You mentioned a plulgin is one way to go - are there any other avenues worth considering?