HTML5/H.264 Format For Desktop Sharing?
Jun 23, 2010
I am trying to live stream my desktop over http to one or more users. The immediate goal is just to share the desktop in real time in read only mode for several users. In future we might allow the users to control the desktop as well by mouse or keyboard. I have these queries in this context- Is HTML5 + H.264 right for this or do I need to go with Flash?In either case what are all the components/servers I need for a live streaming infrastructure? (Like desktop, encoder, streaming server, web server, media player etc)? It will help compare the options, if You can post your preferences for each of these components/servers.
View 1 Replies
Similar Messages:
Feb 2, 2011
how can we create a desktop sharing application in asp.net? can we use silverlight for this?
or any third party tool that we can use?
View 3 Replies
Nov 26, 2010
show the desktop(share desktop) to other person on asp.net or in 3rd free party control.
View 7 Replies
Dec 1, 2010
I see on the bottom of blog pages a sharing buttons (Twitter and Facebook), where if clicked the link behind (which is normally the blog page url) the fshare button takes the clicker to the blog site facebook page respectively.
How does one do this in asp.net 2 , does one one use the <%# %> in the url part of these share buttons, are there any examples of how this is done?
View 8 Replies
Nov 13, 2010
Is anyone using HTML5 notifications in practice, and is there any value in doing so? From my understanding it's limited only to Chrome, and so I can't imagine people jumping on this thing.
View 1 Replies
Jul 24, 2010
can any one please tell how to use html5 in asp.net framework 2.0. My need is If internet gets disconnected, my page(aspx) should able to work in offline.
View 9 Replies
Nov 10, 2010
HTML5 is just an updating to XHTML 4.1 or it brings some thing different and new to the web world ,, what are the major differences between it and its predecessors..
View 1 Replies
Apr 1, 2011
Please give an example how I can integrate HTML code of offline caching in my ASP.Net application?
View 2 Replies
Feb 8, 2011
I am new to mvc I want devlop a small application in mvc using html5 for that I have downloaded html5 toolkit for mvc and add refernce system.web.mvc.html5 but i am unable to get html.html5Textbox please help me how to get html5 controls.
View 8 Replies
Nov 18, 2010
I'd like to get an HTML5 video player working in my mvc 2 project - specifically Kaltura video [URL] , so im trying to integrate their demo html into my Index.aspx..and i get a "Validation (XHTML 1.0 Transitional): Element 'video' not supported"
[Code]....
Here is my Site.Master, in case im missing something there
./Content/Skins/jquery.ui.themes/redmond/jquery-ui-1.7.2.css");
</style>
<style type="text/css">
@import url("../../Content/Skins/mwEmbed-player-static.css");
</style>
</head>
And im basically just copying their example.html here: Is it becasue of <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" [URL] in my Site.Master? I'm guessing maybe the word "Strict" is not allowing video tag since HTML5 isnt W3C complaint?
View 3 Replies
Oct 6, 2010
How to check browser support html5?
View 2 Replies
May 13, 2010
There is a lot of chatter about the improvements HTML5 is about to unleash on the web development world. How will this new standard affect web dev frameworks like Faces, Struts, or even ASP.NET? How long will it take them to 'catch up' in order to emit such code? Will controls get deprecated?
View 1 Replies
Jul 21, 2010
Is it possible (using HTML5 Shiv, for example) to implement HTML5 on a Webforms-based platform? Will ASP.NET Webforms allow the developer to semantically mark up a page using the new HTML5 elements?
View 3 Replies
Feb 3, 2010
For now, I just want to use the <audio> and <video> tags and maybe try out the drag and drop features since these are supported by Firefox 3.6. The project will just be a test project, not necessarily for production.
View 5 Replies
Mar 15, 2011
I'm a MVC[3] noob trying to intergrate html5 framework in the shared [site] layout. Just getting the index page to load is not working. I started from scratch (new MVC3 project). I also compared the web.config files and the controllers to the MVC3 sample project from asp.net/mvc site. Everything appears to be in order.
View 6 Replies
Dec 15, 2010
I am creating a control that contains an html5 audio element and I want to be able to change the source of the audio dynamically. I can access the audio element in C# but am unable to figure out how to change the src attribute.
View 1 Replies
Feb 22, 2015
I have created a Default.aspx page using HTML5 tags such as header, nav, section, footer.
1. The content renders fine on my dev machine (running IE11).
2. However, it doesn't render on my network (live client) PC running IE11. But, it is fine rendering in Chrome!!!!
Here is an example:
Code:
<body>
<form id="frmDefault" runat="server">
<header>
<h1>Resource Portal</h1>
</header>
<nav>
<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager" runat="server" />
[Code] ....
View 13 Replies
Jul 12, 2010
As I understand it, the <input type=email> element in HTML5 will render as a simple text field in browsers that do not support the tag. On other browsers it will render properly, like on the iPhone it will bring up the e-mail keyboard layout.
like to use this in a project but my input fields are <asp:TextBox> controls. How can I use the HTML5 element but still access its data server-side like the rest of my fields?
View 2 Replies
Jul 1, 2010
I'm building a iPhone, iPad website I'd like to use the new HTML 5 input types: [URL] so a numeric keyboard will pop.
I'm using a ASP .NET TextBox :
<asp:TextBox
ID="txtNumber"
runat="server"
Width="220px"
Height="25"
MaxLength="25"
BorderStyle="Solid"
BorderWidth="1px"
BorderColor="White"
ForeColor="#000000"
AutoCompleteType="Disabled"
autocapitalize="off"
autocorrect="off"
style="-webkit-border-radius:10px;"
/>
On run the TextBox translates to the following HTML :
<input name="ctl00$ContentPlaceHolderMain$txtNumber" type="text" autocomplete="off" maxlength="25" id="ctl00_ContentPlaceHolderMain_txtNumber" autocapitalize="off" autocorrect="off" style="color:#000000;border-color:White;border-width:1px;border-style:Solid;height:25px;width:220px;-webkit-border-radius:10px;"
/>
I can add another type attribute which doesn't work, but I can't seem to be able to change the original one.
View 15 Replies
May 7, 2015
foreach (HttpPostedFile file in FileUpload1.PostedFile) {
string filename = Path.GetFileName(file.FileName);
string foldername = DateTime.Now.ToString();
Directory.CreateDirectory("../Webimage/"+foldername);
file.SaveAs(Server.MapPath("../Webimage/" + foldername + filename));
[Code] ....
I am getting this error under foreach
foreach statement cannot operate on variables of type 'system.web.httppostedfile'
View 1 Replies
Feb 25, 2016
[Code].....
To create chartrs on web page(ASP.NET) uding the above link is (WebMethod) workong fine.
But I want to export that chart into Excel,PDF,PPT...
View 1 Replies
May 7, 2015
I need a cross browser solution to upload multiple files without using Flash or HTML5 in ASP.Net
View 1 Replies
Sep 20, 2015
I am using ajax and javascript to play sound from specific time till a specific time.
I do change the class from play to pause when user plays it but i am unable to change it back to play when the sound duration stops
<script type="text/javascript">
function aud_play_pause() {
var myAudio = document.getElementById("myTune");
var musicStartTime = 25;
var musicStopTime = 35;
[Code] ....
View 1 Replies
Jun 16, 2015
i have readed your post(html5 canvas chart using asp.net)
and now i want to create line chart of chart.js
View 1 Replies
Feb 28, 2011
Has anyone been able to cache .aspx pages using the HTML cache manifest? I am porting an html application over to asp.net (and mvc2) and I get a 404 error when trying to cache any *.aspx page. Other files still cache normally (.js, .css, etc). I have changed permissions, handlers, and file names and still no luck. Below is the actual manifest:
CACHE MANIFEST
# This file was generated at 2/28/2011 4:03 PM
CACHE:
/Content/Site.css
/Content/Table_style.css
/Scripts/jquery-1.5.min.js
/Scripts/json.js
/Scripts/persist-all.js
/Views/Data/Details.aspx
/Views/Data/NotFound.aspx
/Views/Data/OffLine.aspx
/Views/Data/OnLine.aspx
/Views/Data/Test.aspx
/Views/Home/About.aspx
/Views/Home/Index.aspx
/Views/Shared/Error.aspx
View 1 Replies