vMix Forums
	 » 
	General
	 » 
	vMix Call
	 » 
	Embedding Vmixcall.com in to my website?!!
	 
	
        
            
            
    | 
	Rank: Member
 Groups: Registered
Joined: 2/17/2017(UTC)
 Posts: 16
 Location: Kuwait
 
 Thanks: 2 timesWas 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
 | 
    | 
             | 
            
         | 
    |  | 
        
        
        
            
        
            
            
    | 
	Rank: Advanced Member
 Groups: Registered
 Joined: 3/20/2014(UTC) Posts: 2,719   Location: Bordeaux, FranceThanks: 243 timesWas thanked: 796 time(s) in 590 post(s)
 
 |  | 
    | 
             | 
            
         | 
    |  | 
        
        
        
    
        
            
            
    | 
	Rank: Advanced Member
 Groups: Registered
Joined: 10/18/2015(UTC)
 Posts: 185
 Location: Newcastle NSW Australia
 
 Thanks: 2 timesWas 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.
 | 
    | 
             | 
            
         | 
    |  | 
        
        
        
            
        
            
            
    | 
	Rank: Newbie
 Groups: Registered
 Joined: 6/12/2020(UTC) Posts: 7  Location: New YorkWas thanked: 1 time(s) in 1 post(s)
 |  | 
    | 
             | 
            
         | 
    |  | 
        
        
        
    
        
            
            
    | 
	Rank: Newbie
 Groups: Registered
 Joined: 7/4/2020(UTC) Posts: 5  Location: Sao PauloWas thanked: 1 time(s) in 1 post(s)
 |  | 
    | 
             | 
            
         | 
    |  | 
        
        
        
            
        
            
            
    | 
	Rank: Advanced Member
 Groups: Registered
 Joined: 4/23/2017(UTC) Posts: 1,382  Location: GermanyThanks: 3 timesWas thanked: 185 time(s) in 165 post(s)
 
 |  | 
    | 
             | 
            
         | 
    |  | 
        
        
        
    
        
            
            
    | 
	Rank: Newbie
 Groups: Registered
 Joined: 4/1/2020(UTC) Posts: 5  Location: RonseThanks: 1 times
 |  | 
    | 
             | 
            
         | 
    |  | 
        
        
        
            
        
            
            
    | 
	Rank: Advanced Member
 Groups: Registered
 Joined: 3/20/2014(UTC) Posts: 2,719   Location: Bordeaux, FranceThanks: 243 timesWas thanked: 796 time(s) in 590 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>
 | 
    | 
              1 user thanked DWAM for this useful post. |  | 
    |  | 
        
        
        
    
        
            
            
    | 
	Rank: Member
 Groups: Registered
 Joined: 7/5/2019(UTC) Posts: 28  Location: SydneyWas thanked: 5 time(s) in 4 post(s)
 | 
            
		      
                Originally Posted by: Basel  Hi, 
 Is there a way to embed vmix call into my site with out the vmixcall logo showing?
 
 thanks
 +1 | 
    | 
             | 
            
         | 
    |  | 
        
        
        
            
        
            
            
    | 
	Rank: Newbie
 Groups: Registered
 Joined: 3/29/2021(UTC) Posts: 4  Location: Plymouth | 
            
		      
                Originally Posted by: DWAM  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)  | 
    | 
             | 
            
         | 
    |  | 
        
        
        
    
        
            
            
    | 
	Rank: Advanced Member
 Groups: Registered
 Joined: 10/10/2019(UTC) Posts: 55   Location: DüsseldorfThanks: 3 timesWas thanked: 14 time(s) in 8 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 | 
    | 
              1 user thanked Follo for this useful post. |  | 
    |  | 
        
        
        
    
                           
	vMix Forums
	 » 
	General
	 » 
	vMix Call
	 » 
	Embedding Vmixcall.com in to my website?!!
	 
	
    
        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.
	
	
    
    
        Important Information:
        The vMix Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
        
        
More Details
        Close