logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
Basel  
#1 Posted : 8 years ago
Basel

Rank: Member

Groups: Registered
Joined: 2/17/2017(UTC)
Posts: 16
Location: Kuwait

Thanks: 2 times
Was thanked: 2 time(s) in 1 post(s)
Hi,

Is there a way to embed vmix call into my site with out the vmixcall logo showing?

thanks
DWAM  
#2 Posted : 8 years ago
DWAM

Rank: Advanced Member

Groups: Registered
Joined: 3/20/2014(UTC)
Posts: 2,721
Man
France
Location: Bordeaux, France

Thanks: 243 times
Was thanked: 794 time(s) in 589 post(s)
Hi

no, not so far. I already did a feature request for this, maybe you could give it a +1.
https://forums.vmix.com/....aspx?g=posts&t=9513

Guillaume
mashynewie2  
#3 Posted : 8 years ago
mashynewie2

Rank: Advanced Member

Groups: Registered
Joined: 10/18/2015(UTC)
Posts: 185
Location: Newcastle NSW Australia

Thanks: 2 times
Was thanked: 44 time(s) in 33 post(s)
Martin you can earn more money from this!! People are very interested :) Very happy to pay a yearly fee for a white label vMix Call with custom URL.
NYCshow  
#4 Posted : 5 years ago
NYCshow

Rank: Newbie

Groups: Registered
Joined: 6/12/2020(UTC)
Posts: 7
United States
Location: New York

Was thanked: 1 time(s) in 1 post(s)
+1

santofilme  
#5 Posted : 5 years ago
santofilme

Rank: Newbie

Groups: Registered
Joined: 7/4/2020(UTC)
Posts: 5
Brazil
Location: Sao Paulo

Was thanked: 1 time(s) in 1 post(s)
+1
mavik  
#6 Posted : 5 years ago
mavik

Rank: Advanced Member

Groups: Registered
Joined: 4/23/2017(UTC)
Posts: 1,279
Man
Location: Germany

Thanks: 3 times
Was thanked: 173 time(s) in 155 post(s)
+1
hguns  
#7 Posted : 5 years ago
hguns

Rank: Newbie

Groups: Registered
Joined: 4/1/2020(UTC)
Posts: 5
Belgium
Location: Ronse

Thanks: 1 times
+1
DWAM  
#8 Posted : 5 years ago
DWAM

Rank: Advanced Member

Groups: Registered
Joined: 3/20/2014(UTC)
Posts: 2,721
Man
France
Location: Bordeaux, France

Thanks: 243 times
Was thanked: 794 time(s) in 589 post(s)
There is a "partial" workaround for this: you can create a webpage on your website with your own logo and have a form that vMixCallers use to type their name and key before being redirected to the vMixCall service. It is a partial workaround because when the guest disconnects it shows the vMixCall logo anyway. So it's only half a solution.

Here's a piece of code for the landing page on your website (there are several ways to do this, this one is just a copy and paste from another thread on the forum, not my code)

Code:
<!-- Script -->

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#vmixform').submit(function(){
var urlNumber = $('#vmixNumber').val()
var urlName = $('#vmixName').val()
var urlString = urlNumber + "&Name=" + urlName
window.location = "https://www.vmixcall.com/call.aspx?Key=" + urlString;
return false;
});
});
</script>

<!-- For the text fields in HTML body -->

<input type="text" class="form-control" id="vmixName" placeholder="Name" name="vmixName" required>
<input type="text" class="form-control" id="vmixNumber" placeholder="Password vMix Call" name="vmixNumber" required>

thanks 1 user thanked DWAM for this useful post.
BigApple on 2/8/2022(UTC)
carlofornasari  
#9 Posted : 5 years ago
carlofornasari

Rank: Member

Groups: Registered
Joined: 7/5/2019(UTC)
Posts: 28
Australia
Location: Sydney

Was thanked: 5 time(s) in 4 post(s)
Originally Posted by: Basel Go to Quoted Post
Hi,

Is there a way to embed vmix call into my site with out the vmixcall logo showing?

thanks


+1
TyBurgesss21  
#10 Posted : 3 years ago
TyBurgesss21

Rank: Newbie

Groups: Registered
Joined: 3/29/2021(UTC)
Posts: 4
United Kingdom
Location: Plymouth

Originally Posted by: DWAM Go to Quoted Post
There is a "partial" workaround for this: you can create a webpage on your website with your own logo and have a form that vMixCallers use to type their name and key before being redirected to the vMixCall service. It is a partial workaround because when the guest disconnects it shows the vMixCall logo anyway. So it's only half a solution.

Here's a piece of code for the landing page on your website (there are several ways to do this, this one is just a copy and paste from another thread on the forum, not my code)

Code:
<!-- Script -->

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#vmixform').submit(function(){
var urlNumber = $('#vmixNumber').val()
var urlName = $('#vmixName').val()
var urlString = urlNumber + "&Name=" + urlName
window.location = "https://www.vmixcall.com/call.aspx?Key=" + urlString;
return false;
});
});
</script>

<!-- For the text fields in HTML body -->

<input type="text" class="form-control" id="vmixName" placeholder="Name" name="vmixName" required>
<input type="text" class="form-control" id="vmixNumber" placeholder="Password vMix Call" name="vmixNumber" required>




I'm a bit of an HTML rookie. How exactly do I submit the info and run the script for that once I've implemented the HTML element to my site? I've added a submit button but doesn't seem to do anything. I've not worked with scripts before. (Still learning)
Follo  
#11 Posted : 3 years ago
Follo

Rank: Advanced Member

Groups: Registered
Joined: 10/10/2019(UTC)
Posts: 48
Man
Germany
Location: Düsseldorf

Thanks: 1 times
Was thanked: 13 time(s) in 7 post(s)
Hey,

just make a button with the type="submit". Then the button will run the above Function.

Quote:
<form id="vmixform">
<input type="submit" value="YourButtonText" class="btn btn-default">
</form>


regards
thanks 1 user thanked Follo for this useful post.
BigApple on 2/8/2022(UTC)
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.