Web Forms :: How To Capture Video
Apr 20, 2014i want to integrate video capturing option in my website for intrview pupose.
View 1 Repliesi want to integrate video capturing option in my website for intrview pupose.
View 1 Replieshow to capture the live video from a dvr device to a webpage?I have been searching and googling for a week and found nothing.
View 2 RepliesI am creating a website similar to youtube, so after uploading videos (that will be in .flv format), a thumbnail has to be captured from that corresponding video.. here i am designing my page using asp.net & c#...
I have got some code from the net, but its working only videos of size 2-3Mb.... how to get my code to work my code for large sized files..
here's my code..
my code in default page(default.aspx.cs)..
its in page load method....
protected void Page_Load(object sender, EventArgs e) {
Class1.GrabSingle_Thumb();
}
code of my class file(class1.cs)...
using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
[CODE]....
I have got these code from [URL]...
I have two more links, which may be useful, but as a starter in .net, I am not that capable of understanding that code in the page...
[URL]...
[URL]...
for video conference project i need to start from capturing video. me how to capture video in asp.net.
View 2 RepliesI want to capture the frames of a video file through C#. I dont want to use the FrameGrabber or other built dll's. I amlooking it from plain dot net without using COM.
View 2 RepliesIm trying to get started this web site and im having trouble wrapping my head around one of the requirements.
If permission is given then by the user browsiong the site then i need to access their webcam and microphone.
Im thinking this could be done with an activex component but if its already been done then why reinvent the wheel right?
I want to post few videos on a website but i don't want to use youtube or any other website.
I want to have an in-build player on the webpage with video in it - how to accoplish that ?
Now i'm currently trying to code a basic website as a project and i've run into problems regarding a search video function. having searched through the forum i still could not find a solution.What i intend to do is to have a video search web service in my website, perhaps something like this:http://www.google.com/uds/solutions/...rch/index.html. however from my limited understanding the codes provided is unable to work with VS2005? Is there a basic template that i could follow and implement for a video search function for youtubes video?
View 8 RepliesWhat is the best and easiest-to-use video player for popular video extension in asp.net?
View 1 RepliesWhen using a modal popup extender along with an embedded video, the popup is hidden behind the video in IE but works as expected in FF.I've tried manually setting the z-index of the popup to a huge number and the z-index of the video object to 1 but this makes no difference.
I've put the code for a sample page below.
[Code]....
I want know how to add video in mvc 2.0 using Video tag in Html 5 .I am trying to add video using video it display Erro video tag is not defined please help me How to add video in MVC 2.0
View 3 RepliesWould anyone know how to capture the complete website URL?
I tried using this:
string strRawUrlText = Request.RawUrl;
but, this only gives me "/login.aspx", instead of the "www.sitename.comlogin.aspx".
what's the easiest way to capture a web cam image in ASP.net?
(I'm a visual kind of person - any examples or references)
Does any one know how to capture ip address using c# and when a person hits a button on my webpage
View 14 RepliesI am developing project using asp.net 2.0 and C#.net.I want to capture users picture or video from webcam and save it in a folder in Harddisk. how to develop this feature and if possible provide me reference links.
View 4 RepliesI have an asp.net web application that sits in a page viewer web part in sharepoint 2003. What I would like to do is capture the querystring from the browser url (sharepoint url path) and not the application path.
View 1 RepliesI need to offer a way for a client to send me XML (list of contacts). I'd like to do this using HTTP post. The page needs to capture that XML and place the data into my database (FirstName, LastName, Address...).
View 1 RepliesHow to capture image from a webcam and show it in the webpage using asp.net.
View 1 RepliesHow to capture images from webcam and store in database in asp.net
View 1 Repliesi was wondering if i could capture transaction time automatically. e.g. if form has a grid submit button and user clicks submit button to submit changes on a grid to database, is there a way to capture start time when user clicked the button and reply user got back from page?
View 3 RepliesI have controls and some has AutoPostBack set to true.
i.e
<asp:CheckBoxList ID="cblTest" runat="server" AutoPostBack="true"
OnSelectedIndexChanged="cblTest_SelectedIndexChanged" >
</asp:CheckBoxList>
How can I capture which control has triggered the autopostback event when it runs again in the Page_Load method.
During pageload i would like capture, which event is raised and its ID .e.g button click event , textbox value change event. I have tried by using the below code in page load but always iam getting only balnk value.
Dim lsTarget As String
lsTarget = Request.Form("__EVENTTARGET").ToString
lsTarget = Request.Form("__EVENTARGS")
I added the button attribute on page load.
[Code]....
What I want to do is if the OK button is clicked, save the data and then open the grid. If the Cancel button is clicked, open the grid. The problem is when I clicked the Cancel button, it didn't do anything in the OpenGridButton_Click event.
I am working on a web application that works very similar to YouTube where a user can upload a movie clip so that others can see.
1- to capture an imgae for the clip at the time of being uploaded to site so that I can use the image in the playlist.
2- best to create the playlist?
I have a simple aspx page which display the google map when the user enters the address.
When the user click Next, I want to capture the displayed map and email to me.
How can I capture this google map image?
aspx:
<div
id="map"
style="width: 500px; height: 300px"></div>
<asp:Button
ID="btnNext"
runat="server"
Text="Next"
OnClick="btnNextClicked"/>