#community-helpdesk

1 messages · Page 24 of 1

ebon cloud
#

@obsidian fog well it seems Star Citizen (that use Easy Anti-Cheat) is impacted as well

#

thx!

obsidian fog
#

Okay. Just double checked and the Devs would need to update their AC to reflect the new copy that's available.

weak mountain
#

I can only see black screen

#

on my Game capture

#

a friend is having the same issue

tardy mirage
#

Does anyone know if there is a Twitch Charity Goal Overlay in SE anywhere?

#

I can only manage to find alerts and whatnot for DonorDrive and Tiltify but not Twitch's own charity tool

obsidian fog
#

We do not have anything for that.

tardy mirage
#

Sadge

lunar vessel
#

Hey, if I want to add an extra week, if possible to my sponsorship, how do I do that?

vivid crown
#

Bumping this because my viewers and I can't figure this out lol

lunar vessel
vivid crown
#

It said to check the in-game notice or email.
My viewers and I found no email, and we can't find anything in-game either

#

The brief said it'd be one of the two

#

and I accepted it 3 days ago

lunar vessel
#

Hm, never accepted one from them before... Sorry. >.<

#

You checked spam folder?
Nothing in the notice boards in the game?

vivid crown
#

we all did lol

#

nothing xD

lunar vessel
#

Hmmm. That's so annoying. I'm sorry!

limpid bluff
thin daggerBOT
#

Sponsorship questions can only be handled with the ticket system. Please type !ticket sponsor support in #community-helpdesk and follow the instructions from the bot.

Attempting to open multiple tickets will not quicken staff response as they are handled in the order they are received.

vivid crown
#

Lol, my ticket got closed and idk why lol

#

oh well

lunar vessel
#

Whoops sorry! I thought it didn't go through!

maiden temple
#

Not sure if i need a ticket for this or not, sorry.
Is there any reason why if you have 3 mods, and they can all add twitch chat commands, when getting a 4th mod, that new mod, even thought they appear to have the same permissions as the others, that mod cant add any commands?

ruby tulip
#

I was having some issues on my end wih my network, so I closed and then re-opened my streamelements obs, and now the start stream button (for YouTube streaming) has completely changed to something that is both useless and not functioning??? I used to be able to manage my broadcast and set up my thumbnail and title and privacy settings before the stream even went live, as well as select an ongoing stream so that if I needed to reboot my software I could still reconnect and keep streaming... Now when I click start stream, it's a completely useless menu that lets me either go live with only a title and description (NO THUMBNAIL on YouTube??) or I can go live to YouTube Live Dashboard settings, which seemingly starts broadcasting and rendering frames but isn't actually going anywhere and doesn't pop up on my YouTube channel? Anyone else having this issue?

#

How do I revert back to the previous settings for this? I've tried rolling back my OBS but I don't think that's the cause. It didn't even tell me my app updated, I just closed it and reopened it and it was changed and now I can no longer properly setup my streams or reconnect to ongoing ones. Is there a setting I'm missing?

thin daggerBOT
#

@ruby tulip ⤵️

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

river siren
#

Hi guys. My chat bot on the old GC has logged out, how do we generate an OAuth token whilst twitchapps.com/tmi is having problems with not being secure? The bot isn't working when I test it via GC.

obsidian fog
river siren
#

No worries. Appreciate the quick answer @obsidian fog

crimson vapor
#

Hey all. New to the sponsor things. Is there a discount for the factor x is they use my code for the food?

loud needle
#

Anyone know how to change the font for the chatbox and alerts?

opal osprey
#

im guessing no word yet on if tiktok will be supported on ground control specifically mutlichat

soft jungle
#

Question, i just updated my OBS and i can't open it anymore, the only way to open it is in "Safe Mode" which i really dumb, can anyone help???

fluid wadi
soft jungle
soft jungle
fluid wadi
soft jungle
limpid bluff
brave karma
#

Quick question! Am I allowed to play copywritten music (muted on VODs) during my campaign window for sponsorship?

#

Mostly asking because I'd like to play Christmas music for 1 stream but wasn't sure if I'd be allowed to.

gaunt wolf
#

Whenever I try to record something, my output is always freezing randomly then reverting back to its original state. Is there any reason as to why this is happening?

ancient adder
#

Hey i added module like subscribe alert in live stream chat but when i do live stream on YouTube someone subscribe to channal alert can't send msg in chat why? And when i open streamelement dashboard there i can see subscribers count but on stream i can't revive alert in chat?

thin daggerBOT
#

@granite grove ⤵️

Sponsorship questions can only be handled with the ticket system. Please type !ticket sponsor support in #community-helpdesk and follow the instructions from the bot.

Attempting to open multiple tickets will not quicken staff response as they are handled in the order they are received.

polar moss
#

Is there a way to make a manual Twitch API call (requiring authentication) from within a custom widget?

obsidian fog
#

#dev-chat would be the place for that but no idea.

ancient adder
#

Hey i added module like subscribe alert in live stream chat but when i do live stream on YouTube someone subscribe to channal alert can't send msg in chat why? And when i open streamelement dashboard there i can see subscribers count but on stream i can't revive alert in chat?

jagged leaf
#

Hey everyone. I am having a problem while creating a custom overlay for Youtube, if anyone can help in this will be a huge help.
I am creating a custom widget for Youtube streaming, i have 5 categories i.e.,

  • Newest Ultra (meaning most recent member on my channel);
  • Latest Superchat (meaning most recent superchat on my channel);
  • Most Superchats (meaning the user who has done the highest quantity of superchats in the month, not the total value of the superchats);
  • Biggest Superchat (meaning biggest superchat this month);
  • Top Superchatter (meaning the superchatter who has donated the most total money through superchats in that month).

I get the names and amount of each category, the problem i am facing is that i don't get the profile image url's for the categories.
I do get the images url when a new member is added by onEvent but for the superchat-alltime-top-donator and superchat-alltime-top-donation i don't get the image url's. I have attached the image of data object i get when the widget loads and on session update.

My code looks like this:-

window.addEventListener('onWidgetLoad', function (obj) {
    userCurrency = obj.detail.currency;
    globalSessionData = obj.detail.session.data || {}; // Initialize global data
    console.log('onWidgetLoad data : ', globalSessionData);
    updateCarousel(); // Populate initial carousel data
});

// Event: On Session Update
window.addEventListener('onSessionUpdate', function (obj) {
    globalSessionData = obj.detail.session || {}; // Update global session data
    console.log('onSessionUpdate data : ', globalSessionData);
});

Basically i store the object on onWidgetLoad and onSessionUpdate and then get the relative data from it but right now i am not getting the image url which is a big issue. I also don't get the users id or username by which i can fetch the image from some API. Is there a workaround for it that i am missing?

Thanks in advance

raw crypt
# jagged leaf Hey everyone. I am having a problem while creating a custom overlay for Youtube,...

#dev-chat is always the best place for code related questions.

Basically i store the object on onWidgetLoad and onSessionUpdate and then get the relative data from it but right now i am not getting the image url which is a big issue.
You don't, actually. That is only stored during the moment the widget is loaded and in memory. Once the widget is refreshed, that info is wiped out.
If you want to save data between reloads, use SE_API.store.get()/set()
https://dev.streamelements.com/docs/widgets-old/186263f447d1d-custom-widget#se-api

raw crypt
thin daggerBOT
#

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

versed venture
#

I posted this in general but I'm wondering about se multi stream. Is it using your home Internet to multistream to multiple services (so uses more bandwidth) or do you stream to a server which then multistreams to other platforms for you?

cedar elk
#

the stream elements plugin keeps crashing obs everytime I close OBS

finite girder
#

not sure if this is the right channel, but i filled out the form for the multi-stream beta, but im worried i was too late, is it still ongoing? the email was in my junk PES_Cry

cedar elk
#

I don't htink its started

plush inlet
#

Hey does anyone have a total active subs count and a sub goal count like kai cenat and other big streamers. Someone please send me an overlay or tell me how to make one thank you.

limpid bluff
obsidian fog
#

I am not aware of any plans for it to be changed.

thin daggerBOT
#

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

finite ravine
#

This is probably the dumbess question, but I am just uncertain. Regarding sponsored stream: I wonder, when it says "Wait (amount of time) before your next stream)" does it mean that I can still stream the game... but cant get the reward until that time? Or will the time reset if I stream the game?

obsidian fog
#

Technically you can still play it but it won't count.

finite ravine
obsidian fog
#

You'd need to make a ticket to get an official response.

novel swallow
#

§TICKET

#

!ticvket

fluid wadi
fluid wadi
jagged leaf
raw crypt
#

You would need to get that information elsewhere, as SE doesn't provide it, unfortunately

shadow berry
#

How do I change the name of my chatbot in my channel to another user that I made for my bot name?

#

They state it was under chat bot settings.. no longer there.

raw crypt
thin daggerBOT
#

@shadow berry ⤵️

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

wary barn
#

Hey still waiting for a response it's been almost 4 days now. Its past the pay day for one of my sponsorship. And it still says missing payment information and I am unable to update it

modest moat
#

Can someone tell me why when i click connect it sends me to streamelements page and its already linked to my account but when i refresh on twitch it doesn't update?

modest pelican
#

Why is my game capture not working after the update wtf?

obsidian fog
modest pelican
#

what i need to do i dont have cs2 screen anymore

obsidian fog
#

Are you playing vanilla or faceit?

modest pelican
#

faceit

obsidian fog
#

Have to do window capture.

#

Or display capture but window is the lesser of 2 evils.

modest pelican
#

Its not working

obsidian fog
#

In that case you'd wanna join the OBS discord.

thin daggerBOT
uncut sluice
#

Hi I was wondering how I am able to add Youtube activity to the se activity I heard it was possible and wondering if its possible for tiktok as well

lost summit
#

hi guys

#

my total subs is on 0, and when someone gifts a sub

#

it goes to 1

#

and then back to 0 again

#

does anyone have a solution for this? is it an api issue or?

halcyon hinge
#

Hi! I am trying to use the quote command on twitch, i can add and remove quotes just fine, but if i want to look up a quote containing a certain word it just shows a random quote instead. Anyone knows what to do?

obsidian nebula
#

Hello, can you do entrance shoutout with stream elements ?

eager kite
#

The new beta when I am linking all of my stream accounts it won't let me link my KICK account, will KICK be supported in the future? @trim prawn

sharp lark
#

anyone using the new SE Live beta yet? I do not have the "SE Versions" option in OBS under the "StreamElements" Tab.

#

nvm, had to just re-log into my account smh....

slow grail
#

Se.Live Beta is just crashing when opening OBS, i dont even come in on the app now...

slate elk
#

Is SE LIVE crashing and won’t open for anyone else?

robust quail
#

When I update to the beta it says I need to close the window that says I need to close the window to update then it just closes and doesn't update lmao

thorn nova
#

I cannot get approved on TikTok for some odd reason after trying to connect my TikTok account. Someone please help.

frigid iron
hasty chasm
#

wont let me log in to SE when I open OBS, I login, screen goes black and se live just loads

ruby sequoia
#

Just saw the discord announcement so I want to make sure I'm following properly. I already use SE.Live and did switch to the Beta, going through a download, etc. However, OBS keeps crashing post-download so I want to make sure I wasn't supposed to download via the link (even if already running SE.Live) from the announcement?

eager kite
thorn nova
#

Seems like I got approved when I clicked Apply Again. Worked.

ember leaf
#

So SE.Live seems to be the cause of me crashing at the moment.
obs 31.0.0,

sharp bobcat
#

im on OBS 30.2.3
i switched to the beta branch but dont have the multi stream dock
the menu streamelement > se.live docks doesnt create a menu

#

okay not sure what i did but that menu exists now...

#

and a bunch of stuff popped up and i got the multistreaming thingy, okay cool

fathom crag
#

Anyone else having issues capturing games since the newest update?

#

I was able to capture Star Citizen the other day perfectly fine, updated OBS today and now it won't capture it anymore. Other games work fine.

#

Star Citizen had no updates in the meantime.

paper ferry
fathom crag
#

Okay, it is definitely something in the new OBS version. I just downgraded to 30.2.2 and it is fixed.

slate elk
red blaze
#

Anyone found a way to avoid the crashing when updating to the beta?

slate elk
drifting badger
#

I was stuck because when opting in for the Beta, the update basically not only closes OBS but closes itself. Then when you open OBS again, it starts to ask to update again and then it goes on and on. Downgrading to 30.2.2 helped.

sharp bobcat
lyric nexus
#

If installing the mutli stream beta update seems to have broken obs...how would I go about downgrading if I can't keep OBS open long enough to do it

red blaze
#

It just does not have the s.e options

lyric nexus
#

interesting I never actually had Streamelements installed...just the streamelementsse.live

#

found a video will report back

drifting badger
#

I did the following:

  • Downgraded to 30.2.2 (fresh install)
  • Installed SE.Live
  • Opted in for Beta (reopening OBS)
  • Imported my regular profile and scenes
  • Updated to OBS 31 in the app

Seems to be working now. I will try to multistream and check in later. ok

slate elk
#

@drifting badger how u go back o 30.2.2

red blaze
narrow nest
#

i just setup my multistearm is there any way to put all chats on stream display or no?

drifting badger
drifting badger
#

So I installed OBS 30.2.2 as a fresh install.

cunning walrus
#

Quick question, is it not possible to resize an image on a streamelements overlay, but with stretch? There's only 'Auto' and 'Scaled', but scale cuts off the image when it's resized to the size I need, and auto just never resizes the image period. Is it possible to do this in SE, or do I need to find something else/use obs for it?

lyric nexus
finite girder
#

hey guys i dont see multi chat in the SE.live beta? any idea why

drifting badger
#

One suggestion: if I'm connected to twitch on OBS, it doesn't make sense to have another source there with the same account. And with YouTube: I only have 1 channel and it shows two of the same and I can't delete any of those. 😦

tight anvil
#

Does anyone know how to fix the vertical canvas window? It looks so odd after I create a canvas.

red blaze
vernal river
#

So with tiktok, I was able to sign into my account and it said I could close the tab but the settings dialog still has the connect button.

livid sage
#

does anyone know if multistreaming will start already scheduled streams? Just asking as don't know but wanna make sure it gets the right stream

slate elk
#

I’m not even able to get pass the beta install how y’all doing it

livid sage
#

I got it downloaded

#

only thing is.. I have no idea if it detects scheduled streams

bright leaf
#

OK Lets Address a real Problem with the SE MultiStream Dock. It Resizes OBS and its Very ANNOYING i have my OBS on a Vertical Screen. Each Dock Has a place to sit, cool i Merge docks cause my GO LIVE Dock doesnt need its own location. everything is fine til i close OBS and OPEN it again. at which Point OBS goes off the screen Since the SE MULTI Dock wants to be Full size upon opening and it resizes the program.

Get it fixed Please. Atium Multistream is Significantly better as of now because of just this right here

slate elk
livid sage
#

for youtube?

#

See this is why I'm uncertain I have no idea xD

#

This is all new to me but then again it is for all you guys to

bright leaf
#

Im curious by what you mean.

livid sage
#

So like if you schedule a stream on youtube.. like you know you normally do? I just don't know if you go live if it will let you choose that stream or not manually -_-

#

Just clueless

#

I might test it out see if it does

red blaze
#

If it doesn't at least I know that it will on a further update

bright leaf
#

yea i think just testing it is the way to find out

vernal river
bright leaf
#

The Only Problem im worried about with this Plug-in. this is the most annoying problem that can possibly exist.

on the left is how i want OBS to Look when i open it.

The right is Halfway off screen and needs to be resized each time OBS is opened

tardy sparrow
#

Canvas gets hidden behind other dock and I have an issue to remove the 2nd YouTube source from the same account

livid sage
#

I do like the concept I will say and I like how tiktok is part of it

#

well it does work like they said and you can choose whatever broadcast you want.

#

also another thing to.. I don't know if it picks up the same obs audio or not

#

but guess I'll see tomorrow for stream and see what it's like

bright leaf
#

I like the OBS Atium Multistream plug-in paired with Axel Chat Plug-in Better for now. it works, it has Twitch, YT, TT, FB, Trovo, X, Kick and Custom Platforms but the main thing is it doesnt resize OBS.

livid sage
#

Like your main canvas?

#

Long as it works that's all I care about

bright leaf
#

look at the pics the right is what its doing. OBS has its own monitor on my setup

#

and this plugin causes it to go halfway off screen

#

and i must manually resize the dock each time i start it up

livid sage
#

Yeah but what I'm asking you like say you go live on twitch.. does it mess up the main stream or does the main canvas stay the same? @bright leaf

#

Like I get for obs

#

but I just wanna make sure the canva is alright

bright leaf
#

so far the main canvas is staying the same it seems

livid sage
#

and it don't mess it up

#

That's good then that's what I want

bright leaf
#

its only resizing the App itself lol which is annoying nothing more

livid sage
#

But yeah for obs I can see what you mean it still needs work

bright leaf
#

exactly

#

like it just needs to not do what it wants to do and what the user, (thats us) tells it to do

livid sage
#

I'm just glad it lets us choose scheduled streams and all that to for youtube 🙂 I like that when your scenes work together @bright leaf like you scene main scenes and the vertical switches to

bright leaf
#

i like when it works too, the idea is MUCH nicer than what im currently using to get the same effect, i just need it to not change layouts. i merged docks for a reason

livid sage
#

I like how I keep getting denied tiktok live access when I already have it xD

bright leaf
livid sage
#

I put in what I normally do the analytics and all that.. my settings and it keeps denying me

bright leaf
#

i had to change browsers to get anything to connect. maybe something similar

livid sage
drifting badger
bright leaf
bright leaf
rapid epoch
#

When I setup 2 platforms do I need to change my bitrate x2?

livid sage
narrow nest
bright leaf
#

no that shouldnt be a case. been multistreaming a bit now and i leave it at the 8k for kick 10k for YT and 6k for twitch. My homie has similar and his is set at 6k across the board and his works. so if you have the internet speed you should be ok BUT as always do test streams to see how it looks

gentle sparrow
bright leaf
bright leaf
narrow nest
bright leaf
narrow nest
winged dew
#

I got this

bright leaf
#

not sure tbh, but if its a thing that will be, it will be found there in the future i imagine.

bright leaf
winged dew
#

I got thit thank you

bright leaf
#

you're welcome

#

good luck lol

little orbit
#

Hey y'all. Following the video it states multiplay my bitrate by how many platforms I want to stream to. If I do that, Twitch just goes black because of the bitrate cap?

red blaze
bright leaf
#

i believe this is what you are looking for :D

red blaze
bright leaf
last steppe
#

is FB and IG working ? who managed to go live on Tiktok?

wintry comet
#

I’m trying out the new multistream beta and the lower half of my vertical canvas is black and blocks that portion of my scenes. Any ideas?

drifting badger
#

When resizing/moving elements on the canvases, I can't use arrows on my keyboard to do that :OO

gentle sparrow
#

trying to add kick via rtmp and when i move the slide over I get this message : Request failed with status code 500

smoky crow
#

I learned to stream to kick using custom rtmp and have to enter key and rtmp url each time you go live

gentle sparrow
bright leaf
uncut sluice
#

Hi I just installed the beta and after doing so my OBS crashes after opening it and wont open unless I use the safe mode How do I revert the install if I cant see plugins

bright leaf
#

a solution ive read is to backup your sources and scenes and downgrade OBS. and try the beta that way. its not crashing for me and i am on OBS 30.2.3 (not sure if that is most recent)

uncut sluice
bright leaf
#

to backup your scenes and sources go to profile first and export then go to scene collection and do the same there

uncut sluice
#

got it and then where would I go to downgrading?

bright leaf
#

you would uninstall and find a older version and install that

uncut sluice
#

Okay and what version is recommended

bright leaf
#

but i'll be honest as it sits SE is very buggy i would recommend just using Atium Multistream til they work a few things out

uncut sluice
#

okay sounds good I just wanted to go back to the normal SE so I still had all my plugins

bright leaf
#

i feel you on that. i think you should try starting OBS in safe mode and going to the SE tab and changing it back from the beta to the normal version for now

abstract hazel
#

Hey, my own playlist somehow doesn't get used on Media Request

uncut sluice
bright leaf
abstract hazel
#

Because I set it on the streamelements Dashboard in my browser and tried the same in the widget.

bright leaf
uncut sluice
bright leaf
#

to set mine i had to pop out the player and click settings and pasted the proper link there and then i hit randomize and it was good to go

abstract hazel
#

Yes, I did that. But it still doesn't change it when I skip to the next song.

bright leaf
abstract hazel
#

It somehow doesn't take the playlist I set, no matter if I set it on the Dashboard in the browser or on the widget.

#

It shows it on the Dashboard, but not in OBS

bright leaf
#

there should be a save buttion but i assume its not working at all

abstract hazel
#

It keeps the settings when I check it again, but the playlist doesn't get recognized.

sharp lark
#

Quick question, I am guessing the vertical canvas needs its own audio sources set up, is there a vertical audio mixer window I am missing?

bright leaf
#

OH make sure the playlist is public i know that matters

abstract hazel
#

Well, before switching to the Beta, it worked.

bright leaf
#

hmmm. Thats definietely something you should probably submit a ticket about. i havent checked to see if mines correct. give me a few minutes please

hexed smelt
#

i just get this when trying to switch to beta version

abstract hazel
#

Ok, it doesn't save it too.

#

But yeah, the overlay and such do it correctly, only the widget does it wrong and plays different music, resulting in my Stream Deck also skipping the wrong song.

bright leaf
# abstract hazel Ok, it doesn't save it too.

what OBS version are you on? i am on 30.2.3 and my playlist is set as only a backup and its still there. BUT i DID just notice its not my copyright free music it is my actual music playlist hmmm

sleek atlas
#

hello, when using the widget for "session sub count" for "new subscribers," does this count all subscribers including gifted, or just those that sub with prime or paid?

bright leaf
#

but i also stopped using the Media request thing since i dont think i was able to figure out how to set its VOD audio track to one that doesnt get me in trouble

cedar elk
#

I keep getting a weird bug catching thing when I'm setting up the multi stream

abstract hazel
slate elk
#

Did y’all do a fresh install of obs to install the beta ?

topaz ermine
#

Heya folks 🙂

Anyone know the minimum version of OBS that SELive would need please ? Specifically to be able to run the Multistream Beta ? I still have Win 7 and OBS v27.2.3 as newer versions will not work on Win 7.

thick oak
#

hey all! how do we change the encoder for each site we are streaming to? Eg YT i stream at 1400p 15mbps however for twitch/trovo I'd want 8kbps and TikTok 10mbps. It's easy in Aitum I'm guessing I'm missing something

sharp lark
#

I don’t believe you can right now.

jovial ocean
#

so idk if this should go here or in the multistreaming beta chat but I've had pervious issues with SE.live that I could never figure out how to fix other than being told I'd have to uninstalling SE.live. With the mulitstream beta I'm assuming I'd be re-downloading live, right?

drifting badger
#

Just got approved by TikTok. Took me roughly 5 to 6 hours.

#

I will try to go live in a few lmao

bright leaf
thick oak
sharp lark
drifting badger
#

Now when I close OBS and open it again, it tells me "User ineligible" even thought I am now. Sage

bright leaf
jovial ocean
bright leaf
topaz ermine
drifting badger
#

Then after I while I got Streamlabs access. (after I applied for it)

bright leaf
#

honestly i stopped Tiktok streaming cause my channel was getting reported for idk what reason and i decided to not waste my time with it

drifting badger
sharp lark
drifting badger
#

TikTok is weird tbh

bright leaf
#

no idea, i was doing vtube so it is possible but i clearly sound in my 30s so that could be what happened, i just got annoyed and stopped after the 2nd time it hit me with the BS. But it requiring its own streaming software to go live really annoyed me for sure the most and is main reason i stopped after the report problem

topaz ermine
#

Sorry to ask again but I need to know if I need a new OS !!

Anyone know the minimum version of OBS that SELive would need please ? Specifically to be able to run the Multistream Beta ? I still have Win 7 and OBS v27.2.3 as newer versions will not work on Win 7.

#

I tried googling but cannot find "system requirements"

sharp lark
#

Where is this secret multi stream beta chat access request? I don’t see anything in #role-assignment or #how-to-get-help just trying to figure out a couple of things and would like to make sure I’m in the appropriate area to be talking about it.

drifting badger
#

One other thing I noticed: it doesn't have Scene Transition effects, right? Or am I missing something?

sharp lark
#

I have not been able to find a transition option for vertical either. I am still trying to figure out if vertical needs separate audio sources or where vertical gets its audio from.

jovial ocean
#

at least that's how I got in

sharp lark
#

So to get help for an open beta I need a special invite?

jovial ocean
#

I mean

#

pretty sure its in open beta now so anyone can get it

sharp lark
#

It’s all good, appreciate the help. I’m just gonna wait until the multi stream stuff is a little further along.

drifting badger
#

Yeah, it doesn't have scene transition for Canvases. So weird, it's something so basic.

#

Well, it's definetely beta, but I think it's on the right path.

sharp lark
#

oh yeah for sure, I love SE they are fantastic, been working with them for years. I am very excited to watch this develop.

cedar elk
#

I've been having major issues with the multi stream but idk how to get support for it

thick oak
#

Yea needs to add bitrate and resolutions per site too

lavish wolf
#

youtube always creates two streams using the multistream

cedar elk
#

Yea idk why it does that. Might be a big

#

Bug

weary field
#

Hey guys, i try to update on the beta version of se.live but each time the process ask me to close se live, so i can't finish the update... I'm using a portable version of obs and it's updated on the last version.

#

Any idea on how to finish the update ?

lavish wolf
weary field
hidden locust
#

i got it to update by switching from beta to default and back to beta.

#

its very buggy

thick oak
drifting badger
# weary field kek

That's what been happening to me. I did a fresh install of OBS version 30.2.2 and it worked. Then I've imported my scenes and profile.

buoyant scaffold
#

This is a long shot but hoping a developer for SELive see this message and possibly creates a MacOS download for SELive open beta 🙏

vivid coyote
#

I suddenly worked after trying 4 times shrug

exotic fractal
#

With the multi stream feature coming how heavy will it be on a single pc? What are the minimum specs to hold let's say two canvases? (one horizontal one vertical)

tired jackal
#

Has anyone had this "fn must be a function" screen pop up when activating the StreamELements Multi-streaming dock?

vivid coyote
#

steamy45Awkward why is this my vertical scene

#

also why is there twitch outputs?

tired jackal
#

My problem was solved in because I didn't have beta on ... 😄

drifting badger
sturdy tiger
#

Just curious, is it possible to run the stream elements chat bot on both Twitch and YouTube at the same time?

#

It's for multi streaming purposes

obsidian fog
thorn nova
#

Any idea of being able to stream on X?

cursive gulch
#

Hello has anyone gotten the tiktok chat to work for the multistream beta?

thorn nova
#

I connected my account and still says streaming on X is disabled due to API issues.

#

I want instant verification and free money.

surreal forge
#

Hi There, i installed SE live and the multistreaming keeps saying "Request failed with status code 500" how to fix?

nova elbow
#

Any idea how I can stop this from popping up, I have tried exiting SE by clicking exit and by clicking in the top right corner

cunning sand
#

Anyone else with this same ground control app issue with the chat/twitch cooke settings? I cant get rid of that. Does not allow to accept or reject, like the buttons are broke.
Dang disclaimer takes the whole panel area. Tips to get it checked or gone?

livid sage
#

does anyone know if the sound that I have for my main scenes carries over to the vertical scenes like my capture card audio?

open glen
cunning sand
#

You got that same annoying issue?

open glen
#

Yes, it seems that everyone has it.

cunning sand
#

yeah ok, customize button does work, which kinda makeis it more annoying 😄

strange ice
clear coral
rapid ruin
#

I tried multistreaming, but the window that should appear to confirm I want to multi stream did not appear and thus i'm only live on twitch ? Can somebody help me 👉👈

lilac idol
#

hey i dont know how to create a like goal in streamelements?

cedar elk
lilac idol
#

there are no option for like goals for youtube in stremelements

cedar elk
elder nest
#

when i try to open the beta and select it in my obs, it reverts to the regular version of obs everytime

#

theres no multistreaming window etc

cedar elk
#

Thats why I mentioned

thorn eagle
elder nest
#

thanks so so much! <3

#

ill try it out. ty for response.

slate elk
slate elk
daring granite
#

I am trying to create a vertical canvas but I cannot get it to show up? Even if I full screen this dock it wont show me all of it to edit it. Any ideas? I am using the beta.

quartz wave
#

Can someone help me with an autoplay problem with Media Request?

I'm testing it rn to make sure it works (first time user here) in SE Live

#

But no matter what happens

It doesn't autoplay AT ALL

daring granite
daring granite
ocean abyss
#

Hey everyone!
I can't seem to open the sub menu under SE.Live Docks. Nothing happens when I hover over it.
It works just fine with any other menu. Anyone else experiencing this?

I've tried:
Rebooting PC
Reinstalling both stable and beta branches of SE.Live

ocean abyss
solar crown
#

IHaveAQuestion is there a way to refresh chat overlay widget? Since the other day BTTV emotes are missing. I had this issue again and I solved it by duplicating the chat layer (then remove it right after)
Any ideas?

#

this is what I mean

slender wolf
#

Does anyone know with the new beta of SE Live, we provide support through normal tickets? Is there a forum for it?

hybrid lava
#

why is there no ticket creation

digital rampart
#

Hey everyone, I’m new here and trying to start creating custom elements for the public. I’m unsure how to access the developer editor or share to public (not sure what the right word is) for SE. Could anyone guide me?

ripe snow
#

Well love all the Beta Features, no crashes yet ect. One simple question tho, I basically Created all my Vertical Scenes and Sources with the Normal Vertical Plugin, the Scene switching transitions work on the Normal Virtical Plugin, does the Switching (Smooth transition) work with the new Vertical Canvas from SE-Live Beta? it looks snappy when he changed trough my scenes?

slate elk
#

By adding kick do the chat still shows up or no?

ripe snow
#

I have that as my Multi Chat

slate elk
#

Ok

#

Thanks

frank haven
#

is there a way to turn preview off on vertical canvas for streamelements multistream

drifting badger
#

Finally got it into a position I'm comfortable with. And yes, I've created Vertical Scenes and Source Cloned them to the vertical SE.Live canvas. I'm that lazy lol

#

Had to set Scene Transitions to "Cut", though. 😦 ( I want my stinger transition Sage )

frank haven
#

@drifting badger for tiktok how do you set alerts up on this?

drifting badger
haughty arrow
#

has anyone else had where all of your added elements that you had in your elements control center disappeared from the control center but the sources are still there but you can't edit the settings after upgrading to the beta?

frank haven
drifting badger
frank haven
#

with the source cloning too that doesn't use up more resources right, for example instead of adding my webcam in my vertical scene

#

I have it to seperate certain elements of the game to put on screen but didn't clone my webcam

drifting badger
frank haven
#

awesome

drifting badger
#

Also @frank haven I would advice to install the TikFinity app. Sometimes you need to click "Connect to TikTok Live" in there so the alerts could work.

frank haven
#

i have a dual setup and my stream pc is like barebones

wraith mural
#

There is a way to add a 2nd TikTok output for horizontal output?

drifting badger
frank haven
#

so not much at all, nice

drifting badger
#

If you don't want to, you can go to their website, press "connect" if it isn't already connected and close it.

#

I installed the app coz I'm sort of a control freak lmao

drifting badger
drifting badger
sturdy tiger
# raw crypt Yes

I was wondering if you can help me set up to make sure everything works

drifting badger
frank haven
#

@drifting badger where do i find the browser source just for the sounds on this tikfinity

#

set up the alerts on the website

drifting badger
#

After that, go to Overlays -> My actions and you can send tests to see if it works.

#

And I think that's it lol

frank haven
#

i'm confused, I can get it to show the alert but it's not playing any sound i've selected from the sounds part @drifting badger

#

like can i do a test follow, share etc to see if the sounds play

drifting badger
#

if your sound is routed correctly it should work

frank haven
#

okay so how do i do individual sound tests for follow etc

drifting badger
frank haven
#

ohh i thought you add those in events

#

oh nvm i got it

drifting badger
#

It's confusing, I know 😛

frank haven
#

you link it to the action from the event

drifting badger
#

took me a while to figure it out

frank haven
#

i see

#

lol

drifting badger
spice fjord
stone cave
#

Hi all, I'm just setting up the new Canvas for the multistreaming in the beta and I was trying the linked scenes. I've linked a 'starting', 'ending', 'chatting' and 'gameplay' scene, and I tried to test swapping between them but the vertical canvas switch seems inconsistent. Is this a known issue, or how should I go about providing additional feedback if it would be useful to refine this for the team

abstract hazel
#

Do the SE commands also work on YouTube when multistreaming or only on Twitch?

fiery flint
#

hello! trying out the new Multistreaming and any attempt to make a vertical canvas does this.

Any fix?

timber raven
#

So I installed SE Live, then select beta, it goes through the motions and restarts OBS but when i go back to streamelements it still shows it's on stable and when i select beta again it says no update available and not getting the new multistream options?

wooden knot
vivid coyote
#

yeah i know its cooked

wooden knot
timber raven
wooden knot
#

Also you can try before uninstalling open Powershell and type “winget upgrade --all”

fiery flint
wooden knot
#

Right click your desktop and go to display

fiery flint
vivid coyote
#

yeah its a bug with stream elements

#

mine was 175% as well since im on 4k

#

but when i set it to 100% it was fine but everything is TINY

fiery flint
#

hey if it gets it set up and works fine after i change back to 175% then its all good! thank you guys.

vivid coyote
#

😓 ngl i went back to aitum after tring se.live it was such a hassle to work with

fiery flint
timber raven
vivid coyote
#

not worth it

wooden knot
timber raven
#

trying that right now

#

thanks for the help

fiery flint
timber raven
vernal scaffold
timber raven
#

So I have another question. I am playing around with it right now. It shows i got approved almost instantly for tiktok and when i go live twitch comes up but tiktok doesn't, but shows the red dot in obs as i'm live on tiktok, does it take a while to push it over?

spring prairie
#

anyone know why my "canvas" is to big for my screen, im trying to put my alert on the top right of the stream but it doesnt go all the way up/gets cut off

timber raven
#

ok so apparently it doesn't show on my own phone and account but if i went to the website it was live. The only thing was the chat wasn't transfering over to the multichat or the pop out window of tiktok chat

marsh minnow
#

Would anybody know why why my Streamelements Elements Alert is looping? The interface for it isn't super intuitive and its only one alert that is looping

uncut sluice
#

Hi would anyone know why I am getting this message in the multi streaming dock? Also the activity feed dock isnt showing anything either

#

nevermind I fixed it I logged out of the SE tool and logged back in and it fixed it

proper badger
#

hi, did you manage to get requests from viewers from the profile page? I would like to have requests from the !sr command and also have the option for viewers to request from the page

ocean rock
#

anyone else having issues with a 2nd canvas linked to main scenes not changing when the main changes?

thin daggerBOT
#

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

light bramble
#

does anybody have a fix for the multistream not creating or going live on youtube?

#

fixed, i needed to reauthenticate inside of OBS with SE live

junior hawk
#

i keep g ettign a stream start requested notification - nbasicallhy not working - says i have to update some things but not sure what exactly. any help?

tired jackal
#

Does anyone have a fix to the beta crashing

#

Mine does that and hoping someone has fix the issue 😄

brazen peak
#

Hey i need to remove old accounts from my merging

#

You cannot unlink this channel

Trace ID: 46910e1c1b9348c297ba704581ff7e75

slender wolf
#

The new canvases don't use transition's. So they just switch to the new scene. There's some real basic functionality missing from this app. I think I might need to go back to my previous setup

thin daggerBOT
#

@brazen peak ⤵️

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

vivid coyote
slender wolf
eager kite
#

My kick chat won't work with the Multi Chat but Twitch and YouTube work perfectly

wind current
#

Kick isn’t supported under stream elements chat.
Think it’s Twitch, YouTube, Twitter and trovo for now?! Or something like that

vernal river
#

Youtube said it was live, no red dot and no stream, I turned it off and back on and it gave me this screen with no settings to fill out. I saw this yesterday as well. Clicking start streaming does nothing.

wary steppe
#

Hi there, I'm wanting to try out the multistream beta function for my streams. I'm looking to see if there is/are plans to implement a replay buffer for your different canvases?

hollow notch
#

I can't hear anything in my alertbox, even if i create a new one the sound does not play when i simulate a sub, follower etc. The weird part is i hear the sound when i add it, can anyone help me?

warm gulch
#

Hi folks, I'm going nuts.
I have the same problem as others that try to install the beta from inside SE.Live and it can't proceed without shutting down some programs - and then shuts itself down

I've downloaded a clean install of SE.Live, reinstealled 30.2.2 OBS, have tried going into the "details" of the task manager and closing things - and it just keeps looping.

Please help!

glad wave
#

Hopefully you guys are working on fixing some bugs. 😆 went live perfectly once and then it never worked again.

thin daggerBOT
#

@glad wave ⤵️

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

warm gulch
hybrid bronze
#

Hi guys, my friend is a streamer and the donate alert messages are read 2x for the last 2 months, do you know where the error could be? I went through all the overlays and there is no other alertbox anywhere

thin daggerBOT
#

@warm gulch ⤵️

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

north light
#

Request failed with status code 500

anyone know why I might be getting that?

stone cave
#

when i try to go live with youtube on multistreaming, it doesnt detect my stream keys, says the user is not enabled for live streaming when i try. i wonder if i selected hte wrong channel when i linked my account. How do I re-choose from the account picker? Ive tried disconnecting and reconnecting.

wooden knot
#

Why my message keep getting deleted lol

limpid bluff
#

It has nothing to do with StreamElements and posting powershell commands for people to run is dangerous and not something that should be here.

wooden knot
#

It absolutely does, it force updates OBS, like three people I helped yesterday by them doing that

limpid bluff
#

You're also posting it in multiple channels, and reposting after it's been removed.

strange ice
#

my multi chat is not working in ground control ... why ?

limpid bluff
strange ice
#

people talkin on stream isnt appearing in multi chat

limpid bluff
strange ice
#

Twtich

#

twitch

limpid bluff
wooden knot
limpid bluff
wooden knot
#

I’m literally a code guru, if anyone knows how the tools work more than you, it would be me

#

But that’s alright, good luck everyone. I won’t help anymore cause semicolon doesn’t approve ✌🏻

strange ice
#

thanks a bunch bud

vernal river
#

Adding a custom RTMP in multi-stream keeps returning a 500 error when I try to enable it.

#

endpoint and key are correct.

next egret
#

Hey everyone, I'm trying to use Ground Control as my standard chat and companion app, but this issue is driving me crazy. Not able to use the chat, and every time I try to snooze an ad, it shows an error message.

Black screens aren't overlay, just edited for privacy.

limpid bluff
next egret
limpid bluff
thin daggerBOT
#

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

willow yacht
#

Does the new SE plugin for obs support Kick?

median orchid
#

hello everyone! I was just curious if anyone also had to "sign up" for tiktok access through the streamelements plugin, i keep getting denied despite being able to stream on tt live studio so im a little stuck

smoky crow
#

@willow yacht custom rtmp

willow yacht
smoky crow
#

Just to stream to

#

Won't show in multi chat

#

Or activity feed

willow yacht
#

Bummer. Thank you

smoky summit
#

ran into all kinds of bugs with the beta version of the plugin. from my obs crashing nonstop (its still doing that). to crashing when i push 1 button (such as add source to scene). to finally me clicking the start stream button and getting this;

which just stops me from going live completely rn since stream elements overtakes the regular start stream button...
good docks and premise though and shows lots of promise. i like having everything in 1 easy to use plugin. But the plugin crashes my obs and wont even let me start stream ;-;

celest orbit
# wooden knot Well that still doesn’t make you a moderator and rule maker

Heya, one of the rule makers here 👋

I actually deleted your messages too. I know what this does and it can help people, but also break things that need a specific version of some program. Code Guru or not. With that role you also have some responsibility because other people on here might think you're part of the SE team. Everyone should know that running "random" commands via CMD/PowerShell is a bad idea if they don't know what they do, but they trust knowledgeable users on here to help them with their problems.

I myself had multiple issues with the command you're kinda spamming here, because it updated things I didn't want to update. Feel free to recommend them to update OBS via the official website or within the built-in updater, but not with a command that has the potential to break things, causing users to complain about it here or even worse, on social media.

molten plank
#

How do I stop the beta updater from closing itself when trying to install it? lol

worn token
#

What am I missing? Usually for my Vertical Scenes I have my Audio Sources set up too but for the new Vertical SE Scenes there is no option for Audio Sources so what am I missing here?

Someone has to know, this is driving me nuts

worn token
#

Getting the error - Cannot read properties of null. How do i fix this?

fierce gazelle
#

0

midnight knot
#

Can i make an giveaway with entries like followed on twitch, joined discord etc?

north carbon
#

constantly getting low bitrate on the vertical stream, it seems there's no way to up the bitrate on the current version? i selected 1080x1920, but it doesn't look that quality due to the bitrate being capped low. it was blurry on tiktok as well, but my main canvas was fine?

gaunt wolf
#

I set up SE Live with the new update set YouTube as the main encoder as NVENC H.264 1440p at Constant Bitrate at 18000 and set Twitch as the additional destination and set it as the default canvas but it is not showing love on Twitch. What is wrong with it?

real prairie
#

anyone why im dropping fps ingame while multistreaming

tired patio
#

MAJOR ISSUE THAT NEED TO BE ADDRESS

#

YOUR LASTEST VERSION DOES NOT WORK WITH NEW OBS 30.1 PLEASE ADVICE

#

UPDATE FOR THOSE WHO EXPERICING THE FAILED UPDATE MESSAGE - Please run as admin and then update

#

UPDATE: it seem to be issue inregard to the update package. It require me to close the application to update but after closing the application to complete update it does nothing. DEVELOPER PLEASE ADVICE A FIX

thin daggerBOT
#

@tired patio ⤵️

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

lyric pebble
#

how long does this normaly take ?

vivid coyote
#

For me it was pretty much instant

#

For me it was pretty much instant

livid sage
#

Is it possible to take your twitch commands and merge them with your chat bot on youtube?

#

I hope this becomes possible

slender quiver
#

Hey all!
I am using the BETA for SE, I linked my YT and TikTok account YT seems to be fine but TikTok asks me to 'Connect' even thought I clicked that earlier. It came up saying I had to "re-request Live authorisation for TikTok" I did that and it was granted, and its still not letting me slide the TikTok slider to "on" I click it and it does nothing.
Also I find that I only some scenes will link to my tiktok canvas but not all of them.
Any advice? 🙂
Thanks!

rapid heart
#

when can obs finally shut down properly??

tardy zinc
#

Hey is anyone else having an issue when trying to update to the beta that the installer says you need to close programs to continue but it doesnt list any programs and then the installer just crashes?

molten plank
tardy zinc
#

Figured it out

#

I was running as admit

#

i turned that off and it worked

shut quail
#

Hi Everyone!
I need just a little help. I have everything set up to stream on twitch and Tik-Tok. However, I do not see an option in the SE.Live Docks for multi chat? is there something i am missing? Thank you!

manic chasm
#

help pls

slender quiver
shut quail
slender quiver
shut quail
#

yeah its a head scratcher

thin daggerBOT
#

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

opal osprey
#

can someone answer with tiktok multi streaming does the activity feed appear on the chat window?

light iris
#

What's up? My viewers haven't been adding watch time for a long time. I've added and deleted the command several times. Loyalty points are enabled in the StreamElements settings. Can someone help me?

vernal river
#

Custom RTMP endpoints return a 500 error when enabling.

strange ice
#

will the option of changing Stream tags ever come to the app called Ground Control ?

crimson sigil
#

hey when i apply for tiktok when says confirm accoutn holder of screenshot what do you need? last time i did this with Streamlabs, partly streamlabs cant read my data coz i disconnected it fully because moved over here like 4 years ago and still using SE?

opal osprey
#

just do something like that but for the channel info ur submitting

vernal river
#

I think there's some busted form validation. I can't fill out anything for youtube but If I turn off youtube I can actually update the title and category for tiktok and twitch.

molten plank
#

still isnt working, still getting update failed or it tries to close itself

cursive gulch
#

Okay. So for anyone doing the tiktok confirmation thing for the chat to show up. "

Literally switch accounts and log out THEN RE-APPLY it wouldn't accept twitch for me so I did youtube instead.

#

UPDATE IT WORKED!

#

^

#

Do that!

smoky summit
#

I dont want to go back to aitum or whatever but at the current moment i might have to.
I cant even open OBS half the time without it crashing immediately.
And if it somehow doesnt crash immediately. It either makes me re-log into the plugin to get it working. Or crash if i add something. or gives me undefined error when hitting start stream button...

clever leaf
#

Is anybody else missing the Multichat dock in the Beta version?

winged dew
#

how can I see my tiktok chat and my twitch in multichat

#

because this is the only that shows up for me

low pawn
#

so for the Monopoly sponsorship it says use the same facebook account I don't use facebook can I just use my gmail to sign in on my phone for the sponsorship purchases and use the same gmail on the emulator to stream it? ** i am on iphone can i use a gmail to sign into phone and use same gmail on emulator**
or does it have to be facebook because I do not have one.

'If streaming with an emulator: After downloading on mobile, connect your mobile account to Facebook [2] (to reach this option click on: Menu Icon → Settings → Manage Account). Android users will be able to use the Google login as well.
Download the game on the emulator and connect to the same Facebook account that you connected to on mobile.
Even if you stream with an emulator, all purchases must be made on mobile!'

opal osprey
#

in the mean time they added a tiktok chat box within the StreamElements docks

opal osprey
limpid ibex
#

Does anyone know how to fix an issue where SE isn't updating my follower/sub/cheer on OBS, as well as in chat? No updates at all

opal osprey
#

anyone know if theres an easier way to do all of my sources that i have setup with aitum and send it over to SE vertical or do i have to manually redo everything

smoky summit
opal osprey
quasi swan
#

Hi do tiktok activity show up in tiktok chat dock ?

obsidian fog
#

No.

quasi swan
obsidian fog
#

we do not.

clever leaf
#

Thanks!

opal osprey
clever leaf
#

Oh no sorry!

#

I don't see where I can add the dock

#

Oh Multichat isn't for tiktok

#

Nevermind!

potent sundial
#

Multistreaming not working for anyone else? Worked last night just fine. "Request failed with status code 500". Refreshed everything, restarted PC, still the same.

unique willow
#

Was excited to use the new SE.Live Multistream but after working through the process of getting it to install (many bugs throughout the installation process), then tediously setting up my overlays with the limited options in the Vertical dock because there's no way to directly convert over existing scenes from Aitum Vertical plugin (no copy/paste, unable to use existing Text(GDI+) sources, transform selections not working, no scene transitions, Ctrl button not functioning properly to stop locking, unable to use undo), and THEN realizing that sometimes without any explanation it will display vertical scenes on the landscape screen when linking scenes (and sometimes without linking them???) ... all of this before even attempting to go live, I unfortunately won't be using it until the bugs are worked out. It's far FAR too unreliable and finnicky to be used by anyone who takes pride in their stream. Hope these issues get worked out and I'll try again.

opal osprey
unique willow
opal osprey
#

i think u can just get rid of the aitum canvas

#

and then the only canvas ur loading is the SE canvas but if u want to add anything or move some stuff around in that scene u can either do it straight on SE vertical or do it on aitum but if u ant to move existing elements then you would have to use the aitum scenes

#

this is how mine looks rn just until i can be bothered to manually redo everything

#

the BRB scene is actually how that looks but if i have a game open it uses a blurred background of the game

#

somewhat like that but with a game

unique willow
#

I completely understand what you mean, I just though it would be rough on the PC.

#

I still can't figure out this issue where the vertical scene shows up on the landscape layout.

#

Trying to capture it now to show you

opal osprey
#

take ur time

unique willow
#

I just realized, it's not even displaying the SE vertical layout. I hit the hotkey (or click the landscape scene, either way does it), my landscape canvas goes to my normal landscape canvas for a second, and then it flashes black and then for some reason is displaying my Aitum vertical layout in my landscape canvas.

opal osprey
#

can you show me this

unique willow
opal osprey
#

if u wanna go live on just tiktok and ill see which canvas its displaying for u

#

u only have to go live for like a minute

unique willow
#

It won't show it there, it's the default canvas that's causing the issue. I'm gonna try something, one minute.

opal osprey
#

i have the 2nd twitch one disabled since OBS has to stream twitch no matter what

unique willow
#

Have you used it multistream yet?

opal osprey
#

i dont rlly stream on yt so i have it unticked always

unique willow
#

I do Facebook, YT Vertical and Twitch currently. Tiktok Live Studio is unusable for me so I haven't been able to go live there despite being approved to use it, so was hoping this would help with that.

opal osprey
unique willow
#

Figured out the weird display issue. Literally, my scene names were too similar. Renamed my Aitum Vertical scenes and the issue went away.

opal osprey
#

its really stupid

#

i just muted my mic and put my phone down whilst i was live

unique willow
#

I've used Tiktok before, just not in a while. I don't think it'll be an issue, but if it is, I'll just go live on Live Studio by itself for a bit and then use the plugin.

opal osprey
#

fair enough

#

im waiting for ground control to support tiktok tbh since OBS wont go to the size i want it if i put it on my vertical monitor

unique willow
#

What's Ground Control?

opal osprey
#

smallest OBS will go unfortunately

opal osprey
unique willow
#

I've never heard of it.

opal osprey
unique willow
#

I haven't used SE since they stopped supporting FB, that's been my main platform for about 3 years.

#

That might change if FB keeps going like it has been ... and then I'd be switching back to full SE everything.

opal osprey
#

ground control is pretty new

#

i never really seen the point in FB streaming

#

the only platforms that make sense to me is yt, twitch and tiktok

unique willow
#

Best revenue split (nearly 100%) and USED to be better discoverability.

opal osprey
#

more twitch and tiktok since they have the most engagement

unique willow
#

Twitch to me is the deadest platform of them all unless you've already got a substantial following.

#

Next to zero discoverability and the worst revenue split of them all.

opal osprey
#

twitch is arguably the better one yet the worst at the same time

#

tiktok atm has the most engagement with a good revenue split

unique willow
#

I've been going live on Twitch now for like 4-5 months, and I've got like 10 followers that didn't already follow me elsewhere, lol.

opal osprey
#

yea u need to multistream for sure to get engagement on twitch

unique willow
#

YT growth since starting vertical for me has been crazy. Just recently hit 2k subs, had 200 in May.

opal osprey
#

thats how i have my cams atm

#

but i barely stream with university atm

unique willow
#

I also only stream 3 hours a day 3-5 days per week as I also work 2 jobs, lol. I put a lot of emphesis on short form.

#

2-3 tiktoks/reels/shorts per day.

opal osprey
#

ive posted a single short atm on my yt and tiktok

#

and it was in september

unique willow
#

Oh god. I'm well over 2k short form in the past 3 years, lmao.

opal osprey
#

i tend to go thru a phase where i want to stream so i start then i lose the passion

unique willow
#

A lot of people like that. I'm just an insane person who's a workaholic.

opal osprey
#

my friend and i started streaming on tiktok at the same time and it really bummed me watching his streams and him getting hundreds of views and loads of gifts then me streaming and getting the complete opposite so that kinda made me stop too

unique willow
#

Side note (but back on main topic, lmao): Do you think it would mess things up if I used Aitum for everything except Tiktok?

#

Nevermind, I just answered my own question, lmao.

unique willow
#

It'll cause an issue with Twitch, because it'll try going live from both

opal osprey
#

i was using aitum as a virtual camera for tiktok then putting my alerts on tiktok studio

#

so everything was setup in obs apart from my tiktok alerts

unique willow
#

I could never get Tiktok Studio to play well with OBS. Used to drop my frames like a SOB.

open geode
#

you think you can help me i wont let me stream to tiktok

opal osprey
open geode
#

it didnt show anything

opal osprey
#

and show proof of a main channel ownership

open geode
#

it just told me to link

#

link accounts

#

well i already did a while ago

#

i used to stream on the tiktok live studio

opal osprey
#

so u have all the minimum requirements and stuff for tiktok

open geode
opal osprey
#

can u show me what the multistreaming panel looks like on obs

open geode
opal osprey
#

does ur tiktok account have 1k followers?

open geode
#

no 💀

opal osprey
#

i mean u can stream without 1k but its hard to get approved

open geode
#

i have acces tho

#

this is on tiktok live studio app

opal osprey
#

odd

#

try relinking the account

open geode
#

im trying to but idk how to unlink

opal osprey
#

click the 3 dots next to tiktok and then delete

#

wait no

#

click on the settings cog at the bottom of the mutlistream part then see where it says tiktok disconnect the account

open geode
#

it didnt work

#

its there a way to log out?

opal osprey
#

what browser are u using?

open geode
#

chrome

opal osprey
#

just change ur main browser to edge for the time being to link it

#

anyways hope u get it fixed just keep trying to get ur account linked

#

i gotta go to bed coz its 6am nearly

open geode
#

thanks bro

#

i appreciate the help

open geode
opal osprey
queen cove
#

thats really annoying

#

lol

opal osprey
queen cove
#

The bot deleted my ticket description that I reformatted like 3 times to be like eloquent English for yall and I had to redo it all 😂 didn’t know about the 80 character

opal osprey
#

then ur long description within the ticket

fleet meteor
#

Hi guys, today i discovered that the beta version is "disabled" and greyed out. No solutions online. Do any of you have the same issue?

thorny grove
#

I submitted a ticket on the 12th, is anyone else having delays in responses?

hot sundial
#

I made the mistake of trying to multistream to X. It said it's currently not functional due to their API issues. Problem is, now I can't even bring up the multistream config

#

ok must have been a temp hiccup, it's coming up now

cosmic condor
#

okay guys so today is my first time doing the multi stream and i used to have spotify playing on tiktok and twitch but now multi streaming those 2 with youtube i cant have music on the yt stream anyone got any suggestions to work around no music on 1 and music on the other 2

#

or audio tips in general for new SE multi Stream

twilit bough
#

can't set vertical canvas to any resolution still does this..

#

ive tried setting canvas and output both in obs settings and also plugin settings

#

i can't even add sources

molten plank
#

is there a bitrate section anywhere for the multistreaming plugin? I cant find it

lilac idol
#

i really want a live like count for youtube but i dont know how to create one. I need a desperate help please.

hot sundial
#

Is there a way to set the bitrate for custom canvas?

opal osprey
formal beacon
#

Why can't I add the tiktok chat within the multi-chat? the option is not available

silk ember
#

Anyone could help?

hot sundial
fervent veldt
#

Hey, before i submit a ticket i wanted to ask if anyone had the same issue when installing the SeLive Plugin.

My problem is that i cannot access my stream settings "output" anymore. Any Ideas how to fix that?

unique heath
#

I am using the latest Beta Multi Stream Plug-in. How do I make sure that the Mature filter is on when going live on TikTok so I don't get into anymore trouble?

crisp fjord
#

every browser source is showing as full page SE web page

opal osprey
#

they have said they are working on it though

clear quiver
#

hi do we have option to setup the right reso for other canvas when doing the multi stream? Also, tiktok chat just stack in login page.

unique willow
unique willow
unique willow
#

Set up Tiktok authorization, approved. Went live on Tiktok Studio, no issues. Went live on mobile, no issues. However, SE.Live plugin still saying user is ineligible. Any thing I'm missing?

thin daggerBOT
#

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

clear quiver
unique willow
clear quiver
slender coral
#

kappagen "enable emoji" doesn't work, what to do?

slow fractal
#

Is there any way to make the offline vs online cooldowns different as opposed to just being enabled/disabled?
This is for !slots !gamble !roulette
For custom commands I can probably just have two diff commands but idk for default commands

carmine spindle
#

someone else has a bad quality when streaming to tiktok with the new "multistreaming"?

twilit bough
#

can anyone help with the issue i posted..?

mighty laurel
#

Hey, can anyone help me create a custom command in StreamElements that pulls the leaderboard from my StreamElements website (https://streamelements.com/javionik/leaderboard) and displays it in the chat? Ideally, I want to avoid using external platforms or APIs.

opal osprey
#

any of u guys had this at all?

smoky summit
# opal osprey any of u guys had this at all?

im getting this everytime i open OBS.
OBS Is completely unusable. Havent found a way around this.
Safemode works though.
And rarely, sometimes when obs doesnt crash, theres still another error stopping me from going live

wheat badger
#

How does scheduling streams to Youtube work with this?

slate elk
#

Question by adding kick to custom rtmp will it still be shown on multi chat in SE beta ?

slate elk
opal osprey
#

i think atm multichat only works for twitch and youtube

smoky summit
#

downgraded to 30.2.3, still crashing. :(

opal osprey
#

just @me so i dont forget to tell u

cosmic condor
#

im having insane quality issues anyone know why mutlistream quality is terribel for me?

carmine spindle
cosmic condor
#

i got no clue its just quality should not be a issue but is really pixelated

radiant panther
#

Playing around with the new multi stream plug in and it seems great. Haven’t gone live yet cause I’m scared I don’t have enough upload in this old apartment. Has anyone had multi stream success with around 20 mbps upload

cosmic condor
#

i have 400 and i have quality issues

radiant panther
#

Oh wow, yea I’m kinda cooked cause I lease and can’t bring in my own isp. Hopefully over time everything will be optimized well

cosmic condor
#

i should not be having quality issues

radiant panther
#

Yea it’s new and even obs 31 is beta so lots of betas messing with my stuff as well, it’ll work over time tho

carmine spindle
red blaze
#

Anyone know if Is it possible to start streams at different times in different platforms? Like start my main stream and then 20 mins later start my multistream in tiktok? Im asking with the SE Live tool

cosmic condor
wind current
tight bane
#

yooo anyone able to fix "You need to be logged in to use this feature.

If you did log in previously, please logout and login again." im so lost on what to do . Ive longed out and back in on the app and obs

opal osprey
red blaze
slender quiver
#

Anyone having their Encoder Overloading when multistreaming to Twitch and Tiktok?

#

Am using my Nvidia Encoder

cursive gulch
#

Okay so small update: The tiktok chat still isn't working despite me applying and getting approved through youtube because twitch wouldn't let me do it. It crashed so much yesterday, but an update came out so. Hope is not all lost!

tacit relic
#

hey can anybody help me i can seeem to find the tab where it says version of streamelements in obs i wanna stream from obs to tiktok

smoky crow
quiet fox
#

Hi I was woundering if someone could help me. I am trying to set up a !fail command which I have done but I am struggeling to get it to reset everything that I have found on youtube and streamelements webstite isnt working

#

which dose not work

sterile pike
#

Hey,

I am using the Multistreaming beta of the extension and I am trying to stream to tiktok, but it keeps telling me I don't have access or permission to go live. I don't have the official access since I don't have 1k followers, but I do have the temporary access to stream on tiktok, is there any way to fix this or do I just have to wait for now?'

slate thunder
#

So, I'm trying to test out the multistreaming beta, but every time it prompts to update, it doesn't actually install the update, and I'm stuck in a loop of it constantly updating, yet never updating.

sterile pike
tacit relic
#

hey where do i find the window to login with tiktok?

sterile pike
tacit relic
#

kk thanks

#

i link everything now and it says the streaming key is wrong?

topaz lark
#

Hello

tired garnet
#

Is there a way to create additional events? I would like a youtube member alert but I don't see that event. Also would like an alert for gifted memberships.

jaunty laurelBOT
tacit relic
#

found fix but says im live but on tiktok im not

loud berry
#

Hello i have problem about I did not ban the parson but The parson's chat does not come on chat overlay.... when the parson write about commands it is working but not coming just only chat overlay.... How to fix this? Please let me know

ruby lynx
#

Ow lol my message got removed and the post is gone wow. Streamelements mayby want to hide something

narrow nest
#

yo can anyone help me with alert box i rlly cant find any work for all and twitch and youtube there is ?

slender quiver
#

If you change something in a scene trust me when I say Do not CTRL - Z or Undo it instacrash

limpid bluff
slender quiver
#

Beta (sorry should've explained better) lol

limpid bluff
#

Can you fill out a bug report so the devs can take a look?

thin daggerBOT
#

If you need to fill out a support ticket, please use the command !ticket in chat, following the subject of your issue! For example, please type "!ticket My chatbot isn't working", and then follow the prompts from our bot!

floral hill
#

Hey
So im finding when i have linked scenes in the multi stream canvas, if i change the scene using the obs shortcuts on my streamdeck then it doesnt change in the canvas,
if i want to change the scene for multisteam i have to click into the canvas to change the scene and then it will change in OBS

Is there a way to get it to link the other way round, so i can change it with obs shortcuts and it then show that in the SE Live Canvas

ripe snow
#

Streamelements Vertical Canvas settings don't save

ripe snow
#

Or try linking them both at once, if you already had Vertical Scenes Created.

floral hill
slate elk
#

Yo can’t assign gifts using SE for TikTok?

opal osprey
slate elk
#

Like TikTok studio u can choose what gifts u would like and stuff

radiant panther
#

I used to be able to send music to the live but not the VOD, with the multistream is this no longer possible? both tiktok and twitch said they couldnt hear the music last night unless it went to the main feed which is normally not the case

limpid bluff
#

I've never made it work with any other track

crisp fjord
#

Does anyone know if it is possible to make a command that would pull your current monthly subs instead of total? Trying to use the "subscription goal progress" in a command.

opal osprey
carmine path
#

Hey Everyone! Any creative chat commands for the AI?

frozen torrent
#

Can a 13 year old guy, use sponsorships?

glossy ice
#

Under "Banned Words" What does Regular Expression mean?

opal osprey
#

@smoky summit have u found a fix yet?

zealous ocean
#

Is there anyway i can fix this, i had all the toggles/option visisble before but now they're all gone

unique willow
zealous ocean
smoky summit
empty bison
#

Hey, I actually restarted the pc and it worked

burnt spoke
#

I didn't get a StreamElements Reviewed email. Is it only for people who use SE Live?

zealous ocean
smoky dune
#

Just to make sure, you cant get the SE Multistreaming plugin WITHOUT installing the SE.Live plugin correct? I ask because i have not had the best experiences with the SE.Live plugin (it always seems to break at some point requiring me to remove it, which is a whole process in itself which is a whole other not great experience) itself but i would love to use the TikTok features without having to use Tiktok live Studio.

empty bison
#

It seems that I can't go live on youtube somethign's missing even after connecting everything

tired garnet
#

Is there a way to add a state to an overlay? What I am trying to do is add the new member and superchat states to my current overlay, but they aren't available in the list. How do I get them added to the list in an overlay?

empty bison
reef nebula
gentle dome
#

Does the chat overlay for youtube not work at all or is there something special you need to do to make it work? (theres no chat messages sent to it)

opal osprey
#

eventually i’ll get a reply on my ticket

vivid seal
vivid seal
#

i fixed it

#

you need to go to StreamElements > Logout then log back in

#

@royal mica

proven kite
#

SE.Live came with OBS 31.0 ???

glossy thicket
#

Do we still need a key to stream on tiktok?

opal osprey
glossy thicket
#

Excellent. Think I'm going to try and attempt either a twitch/youtube or twitch/tiktok dual stream over the next couple of days. No idea how to do it but it should help distract me from health issues

sand marlin
#

I am trying to Multi-Stream to YouTube and recieve this error. Note: I installed new RAM and Moved my stuff to a new SSD today.

opal osprey
twilit violet
#

I keep pressing check automatically but it isnt working

opal osprey
#

check dont i guess

twilit violet
#

doesnt work either

obsidian fog
sturdy relic
#

For some reason, after creating a scene for my vertical canvas, I dont have the ability to add sources. Whenever I click on the 3 dots on the scene, it doesn't do anything. It response like its inactive. I already uninstalled, reinstalled, logged out, then logged back in and same issue.

somber valve
#

So when I downloaded the SE Live, It didnt come with the Multi-stream chat. is there somewhere to grab the dock?

#

Nevermind, just randomly fixed itself

twilit bough
#

after reinstalling both obs and s.e live i no longer have vertical canvas dock

#

i tried logging out and in multiple times aswell.. also vertical canvas dock worked before just displayed incorrectly

ripe snow
sacred temple
#

How do I setup multi-chat overlay? Is there a link or something? I just need a link for OBS, right now I have my chat but it's just from twitch

#

if I just get this as a link i'm able to fix it

obsidian fog
sacred temple
obsidian fog
#

That's all internally handled.

sacred temple
#

Will it have any support in the future? Can we expect something like that?

obsidian fog
#

Can't say there's any plans and would still require internal changes to the interlals if it were to be available in overlay form.

sacred temple
#

So I guess all I can say is that this is my suggestion for SE.Live beta features 😅

obsidian fog
#

As far as the multi chat do you have multiple platforms linked under your SE account? That's the only way they'd be available.

#

Plus youtube would require you to be live with a public stream to show up as well.

sacred temple
#

already connected in my SE.live account

obsidian fog
#

That would indeed be why.

Can't show chat for something that "doesn't exist".

sacred temple
#

but you said you dont have support

#

so yea :/

sacred temple
#

fixed, theres a software for this kind of situation: casterlabs

woeful zephyr
#

anyone know why ''${user} has been watching the stream for ${user.time_online}'' does not show the user's time spent watching the livestream? im assuming there is a quick fix but idk

#

^ on youtube

obsidian fog
#

Because that's tied to loyalty which doesn't exist for youtube.

#

So "working as intended".

woeful zephyr
#

so it doesnt work for youtube?

obsidian fog
#

Correct.

white stratus
#

Hey folks, I have the latest version of stream elements but I don't have the multistream dock yet is it available in the uk yet?

livid sage
#

Just letting you all know the sound for elements for overlays isn't working with streamelements. I put sound on my alerts and nothing is going through

#

I don't know if it's because it's still a beta thing or what but I'm kind of diappointed

#

never mind figured it out my sound was just low lol

#

although it don't come through obs for some reason

#

okay now sound don't wanna work xD

#

yeah elements needs some work as sound work one moment then it don't the next

drowsy iron
#

is there a way to change bitrate when streaming to tiktok live when multistreaming on steamelements se.live? my bitrate turn to dog piss when streaming to tiktok

wooden wind
#

sponsored events: Echocalypse: The Scarlet Covenant - it is both mobile and pc. if they start it on pc but continue on mobile will it still keep track of the levels? I only ask because i had one do this and it tracked the first 3 goals he reached but not the 4th for 50

pulsar zodiac
#

hi everyone, i'm new to streamelements and SE.Live and i'm having a little issue.
i'm trying to setup a vertical canvas for tiktok and youtube streaming, parallel to the horizontal for twitch, but the vertical resolution doesn't show up in the window that pops up when clicking "Create new canvas"

vernal river
#

Hyped about the update but I'm having an issue when trying to go live. I start streaming but none of my active platforms go live. I can toggle them off and back on but when I do that I get the dialog to fill out the information but I can never click start streaming because it stays disabled.

vernal river
# vernal river Hyped about the update but I'm having an issue when trying to go live. I start s...

figured this out:
The form validation happens on every output source no matter what's being shown at any given time. So because I didn't have a title in my rumble stream, the titkok and youtube outputs wouldn't start either. Not sure but it seems that the validation needs a little more context when showing individual outputs, maybe a different form entirely that populates with the same data?

ripe snow
twilit bough
#

but it still displays wrong

ripe snow
simple portal
#

how do i get the boxed chat widget

twilit bough
ripe snow
twilit bough
#

theres no plugin unless you mean the s.e live beta

mossy iron
#

On the SE.live beta does anyone know why on ther vertical part I cant have it use OBS recording settings or why I cant switch it from MKV to MP4?

ripe snow
winged knoll
#

How did you get your scene switching to work? I created my tktk canvas and linked it to my obs scene but canvas scene doesn’t change whenever I switch scenes.

mental rivet
#

When using SE-Live beta in Portable i can't use my Elgato Streamdeck

#

More ppl with the same bug?

frank haven
#

can i get my multichat in SE live OBS to show on stream? the default stream chat on overlays for the site only shows twitch

reef nebula
sonic loom
#

is there any staff that can answer my ticket please

ripe snow
# reef nebula I did, but the scenes are still always gone

That is suppose to be like that, you gotta add the scenes manually again, You could Create a New Scene and add to it a new Source ( A scene ) and then try to copy the Vertical scene Example Be right back Vertical ) How ever you set it up for you.

reef nebula
ripe snow
#

I do have the same issue

reef nebula
sick thorn
#

Hey guys, so i wanted to install the beta of the obs plugin but while installing it closes install window and thats it...

#

any idea?

fervent wharf
#

SE multistream - youtube refuses to go live but won't give any errors. I noticed that it asks for a stream category but won't let me select anything. Any ideas? https://i.vgy.me/fRfw38.png

vale nexus
#

Just downloaded se.live and went to connect TikTok but Tiktok is asking for some screenshots to prove I'm the account holder.. what type of screenshots are they asking for?

smoky dune
#

Not sure if this is more feedback or bug: 2 things.

  • Noticing that in the vertical canvas, sources dont snap to alignment or show the little line that shows in normal canvas when a source is centered in the canvas. Am I missing something or is that a known thing?

  • When trying to transform a source, mainly trying to center a source horizontally/vertically, the source disappears and I have to go back into transform and reset the transform. Is this something missing or known?

proper badger
#

Hi all, it has been well documented that streaming on tiktok on phone vs tiktok studio or other solutions has a different impact in the stream being pushed out to people's feeds, streaming on phone gets you way more viewers generally speaking.
Has anyone noticed this also happening with the new se.live solution being used vs streaming on a phone?

twilit bough
jaunty marsh
#

So when I try to multi stream I get this error and I think it's the SE.Live error but only lasts about half hour then crashes anyone else having issues with it crashing OBS?

stark spoke
#

Anyone else having this every time you open obs with streamelements?

rigid orbit
silk girder
#

how do I know which youtube is youtube shorts vs not? As well as where can i customize the thumbnail for the youtube live?

rigid orbit
#

does anyone know a solution to actually getting the beta version to show up on obs? every time i try to switch to it, it takes me to another download and closes obs. when it reopens the stream elements plugin is gone and i have to redownload the stream elements plugin again

slow fractal
#

For slots module, emotes, 5 makes it 4% chance to win. If we add more than 5 emotes, does it cycle and keep it at 4%, or does it make it more difficult?

ionic veldt
#

Hey yall!

If i want to stream 1920x1080 on twitch, but vertical on youtube to reach the shorts feed, do I need to output 2 encodings? or is it all under 1?

#

This would be with the new SE multistream plugin

smoky dune
# proper badger Hi all, it has been well documented that streaming on tiktok on phone vs tiktok ...

Where is this documented? i would love to see it because from my understanding of the way their api works the only way it can tell the difference between you say using Live Studio on your PC and streaming from the app on your phone is the aspec ratio. Yes i believe they will prioritize vertical streams over horizontal as most viewers are watching from the mobile app where the vertical experience is better.

Now it would take more digging to find out if there is a prioritization difference in say people streaming with SE.live or streamlabs multi vs people streaming from TikTok live studio, i can totally see that being a thing, but unless I can see hard proof of what your saying from tiktok themselves, id have a hard time believing that statement and id urge you to not as well.

smoky dune
# ionic veldt This would be with the new SE multistream plugin

the multistream tool takes core of that for you, it copies ur obs settings. unless im wrong the back end works similar to how the multistreaming works for streamlabs as well. You just need to have 2 canvases, one normal and one vert if that makes sense

ionic veldt
#

I've been outputting 3 encoders for awhile (twitch, youtube vertical, and tiktok) and its a painnnnn and the dropped frames go crazy
I have an AMD Ryzen 9 7950x3D 16-Core CPU, and a 4080 GPU
Was trying to get it limited to atleast 2 encoders, considering tiktok is just gonna be a pain and I have to use their app

#

But my question is, would using this multistreaming platform reduce the encoder output to 1? or would i still need to have multiple since one is a 1920x1080 stream and the other two are tiktok stream, and ones a youtube vertical stream

smoky dune
ionic veldt
#

All together it makes me use 3 encoding outputs 😕

smoky dune
# ionic veldt I am using 2 on OBS, one using Aitum Veritcal and one without aitum vertical Th...

ok now i got ya all good!

Well in theory cause I cant speak 100% for how aitums back end works but unless your running specific encoding settings for each one (each one having their own encoding hardware selected for example one using NVENC, the other .264 etc etc, different bitrates etc) then your output shouldnt impact you to bad with those specs assuming you have a solid upload speed.

I have found that the one that seems to impact multi scenarios like yours (and mine since we have similar setups and specs) is the damn TT live studio. Its a system resource hog on even the best machines. I have amazing internet, so the issue wasnt my upload but the demand on encoder on my GPU combined with CPU and ram.

NOW i dunno know the for sure on this ill have to do some more digging but if the SE live multi plugin works similar to the one Streamlabs has for Streamlabs desktop and their OBS plugin, it is essentially utilizing a service like Restream where your separate outputs all go out one pipeline, or i guess 2 with the difference aspec ratios, and the back end takes care of routing to the different platforms. In that functionality most of the heavy lifting gets done at the server level and not by your device. AGAIN this is making alot of assumptions of how the backend of the tool works, so anyone feel free to correct me lol.

kindred pier
#

Is there any way to connect multiple twitch channels to same account?

vivid robin
#

Heya, a few days ago one of the streamers I mod for changed a couple of emote names on his Twitch channel, but in the StreamElements chat overlay on his screen it still keeps showing the old emotes.
Like 'Jam' has been renamed to 'JamNotes' and a new emote has been uploaded as 'Jam'. But when someone uses the new 'Jam', it displays on screen as the old 'Jam'.

Is there anything we need to/can do to fix this, or does this automatically fix after a few more days?

finite ravine
#

Since support has stopped responding via email I just want to ask, what is the normal response time? Trying to solve a kind of big matter regarding sponsorship payout and havn't had a reply in over 36 hours :/

radiant sonnet
#

does anyone know how to help with this error?

knotty umbra
#

Does anyone know how I can fix the Streamelements Extension on Twitch being off-center like this? It's only like this for the chatter leaderboard, is it because the names are too long?

proper badger
# smoky dune Where is this documented? i would love to see it because from my understanding o...

all over reddit in plenty of posts, at least in previous solutions that people were trying, eg. stream keys on OBS, capturing TikTok Live Studio, streaming from Live Studio on PC and such. Of course TikTok themselves will not admit to it, but it makes total sense if that is truly the case

Now, I know that SE.Live does not use a stream key to stream to TikTok so I wonder if this will have the same behavior or if it will not make any difference at all. I would want to use the multistreaming tool as it is much more practical than having to put my phone also to the side but if it impacts viewership I don't see the point really. So I was wondering if anyone has noticed that in terms of viewership

fervent veldt
#

What can i do to not have OBS tell me this, when installing the SE.LIVE plugin

glad wave
#

how do i uninstall streamelements from my obs? the uninstaller crashes when i try to

fervent veldt
#

windows button type unistall and it gives you remove programms or something along those lines

delicate vine
#

hello guys^^
1 quick question
I just connected the bot to my youtube channel for streaming and i wanted to see if the commands works. sadly i see nothing in my chat but I haven't gone live yet, do i need to be live for the bot to work or did i do something wrong?
I rememeber for twitch bots work even when you are offline and not streaming

radiant sonnet
smoky dune
# proper badger all over reddit in plenty of posts, at least in previous solutions that people w...

Yea I dunno man I'd have to see hard data to really believe that, but u do u man, I'm just saying the tech doesn't really work thay way and that you can find actual documentation on.

From my experience with both I haven't seen a difference in viewership across the board outside normal varying factors like different start end times, content varying etc. (And I've done streamlabs multi, se live multi, tiktok live, feed my live through a android emulator running the mobile app which is basically a mobile stream etc)

proper badger
# smoky dune Yea I dunno man I'd have to see hard data to really believe that, but u do u man...

That's some experimenting you have been doing! Sounds good, so I may give it a go when they add chat/alerts support for tiktok on SE. If, by chance, you decide to try streaming directly from a phone do let me know if you see more viewers than usual.

It's just that I have seen plenty of reports from people saying they got a pretty good number of viewers when streaming from their phone vs like 5 or 6 when streaming from a PC, all other factors being the same. Of course you cannot replicate it 100% but still curious to read these reports

smoky dune
# proper badger That's some experimenting you have been doing! Sounds good, so I may give it a g...

Don't get me wrong there could be something there, I'm just hesitate when it comes to the internet ya know lol. I totally get your thought process and wasn't knocking u at all, just going by my experience. Tiktok isn't my primary anyway so u may have more experience with the platform itself streaming wise Than myself.

Funny enough the experiment wasn't about the whole viewership thing but was more about trying to find a better streaming experience as imo live studio is straight up ass lol.

delicate vine
#

hello guys^^
1 quick question
I just connected the bot to my youtube channel for streaming and i wanted to see if the commands works. sadly i see nothing in my chat but I haven't gone live yet, do i need to be live for the bot to work or did i do something wrong?
I remember for twitch bots work even when you are offline and not streaming

livid sage
#

like how it works with twitch for example like any commands just carry over to youtube for example

proper badger
livid sage
#

you know kind of like botrix works or streamlabs how the commands merge. I hope they do something like that, or even alerts carry over to

#

I think they are gonna do that at some point but time will tell when that will be

fervent veldt
#

What can i do to not have OBS tell me this, when installing the SE.LIVE plugin? Cuz this is only a problem with this plugin.

twilit pond
#

Im having issues with SE Chatbot comands. I multistream on Twitch, YouTube and YouTube Shorts. I have my Twitch & YouTube accounts linked to my SE. My commands work fine on twitch, I switch over to my YouTube tab and enter the same & some new commands in there but they do not work on stream. I added Streamelements YT page a s a moderator on my SE page but stilll the issues persists.

rustic rapids
#

I went into se live to switch it to the beta version to try out the multistream. When I did that, it did either an update or a reinstall (I wasn't paying too much attention), and now the streamelements button doesn't show up next to the help button. Everything is still there for all my scenes, sources, etc. I just can't do anything with my streamelements account. Anyone have a fix? I tried reinstalling again too

smoky dune
#

Not sure if this is a bug or not, but I was doing some testing and i switched profiles and when I went back to the profile I had set up my vertical canvas in with all my scenes and sources, I have noticed that they are now missing? Its like i never set them up? Am I missing something? Will be a real pain in the ass if I have to set that all up again

I also get this error when I open OBS after the profile switching thing:

sleek depot
#

Anyone here using SE. Live Beta and figured out the multistreaming to twitch and tiktok?
I get these errors on the photos when I press "Start Streaming" and I have Nvidia drivers lates update as well.. and I don't understand the first error with config URL one.. and it's just stuck on "Stream Start Requested" after confirming/pressing OK on both

smoky dune
#

also not an actual problem but a separate question related to the multistream. Since the multistream plugin has my twitch stream settings in it, can i technically run say Kick as my primary platform in my obs profile while still being able to stream to kick? Or should I just add kick to the plugin manually?

unborn galleon
#

but it doesn't give me the error it just doesn't do the multistream

#

but it does say stream start requested tho

sullen acorn
#

My Subscriber Alerts aren't working when someone subscribes but the test subscribe works anyone know to fix it because i am so lost and the new Subscribers arent being picked up on the dashboard

marsh flax
#

Is there actual staff in here or is it community only?

timid flower
#

I just recently switched over to SE Multistream, and I have a few questions.

  1. Is TikTok chat not combined with Twitch and YouTube?

  2. I can change the stream settings for the DEFAULT or first connection, but I cant find the settings for YT or Twitch for example as my multistream channels? Can you adjust these, or is it one Bitrate for all platforms?

please @ me back so I can get a ping to return

sonic loom
#

any one else get these

#

i do once a day

gray wren
#

Question, I have streamelements connected to my YouTube ( my primary streaming platform). I literally NEVER have campaigns for ads on my channel, I have 30k subscribers and have average 90 viewers for all of 2024. Even when I click the link in announcements it says there is nothing available for me 🤔. Is it simply a twitch only thing? Or am I missing something

kindred rapids
#

using the overlay sub goal and was having trouble getting it to track the amount of concurrent subs. A couple have fallen off and I am trying to reach a certain amount of concurrent subscribers but the overlay won't regress with the subs that fell off. Is there a way to have this update with current subscriber count?

unborn galleon
#

I have a problem I am trying to multi stream but it's only letting me stream to one platform it won't let me do both but it does do the stream start requested tho any suggestions what i should do?

smoky dune
#

I dont suppose they are gonna work on tickets related to the beta since its a beta? i haven gotten much feedback here for my questions but wasnt expecting alot as they prolly dont monitor these channels.

limpid bluff
main bluff
#

where can i download a sable copy of SE live WITHOUT the Dual Chat?

main bluff
limpid bluff
gaunt wolf
#

hi

#

so i recently added an alert when someone subscribes

#

but the thing is that the alert pops up but not everytime

#

like 1/10 times

#

so if anyone has an answer lmk 🙂 ty

jaunty marsh
#

does anyone know the best encoder to use for YT vertical streaming?