C# - Get The Dimensions Of A Mp4 Video File?
Feb 23, 2011
I have a form that will accept and save a MP4 video file. I need to be able to get the dimensions of the video as well. This will be running on a server running ASP.NET 2.0 so any external libs must be able to be placed in the Bin folder as they can not be installed on the server.
how to get the information? If the same lib would let me transcode the video to flv that would be a huge bonus.
Update: The server is XP Service Pack 2 with .NET Framework (2,0,50727,0)
View 1 Replies
Similar Messages:
May 19, 2010
I have file upload UI element in which the user will upload images. Here I have to validate the height and width of the image in client side. Is it possible to find the size of the image having only the file path in JS?Note: If No, is there any other way to find the dimensions in Client side?
View 4 Replies
May 7, 2015
I use fileupload control to upload image below is code:
protected void BtnUpload3Img_Click(object sender, EventArgs e)
{
uploadImageError.Visible = true;
if (fup3.HasFile && fup3.PostedFile.ContentLength < 102400)
[Code]....
in above code I define format of image that user can upload .png or .jpg image and size of image should be lessthan 100KB now I want define that users just can upload images with dimension 1007*143 how I can do it?
View 1 Replies
Oct 18, 2013
How to upload images with some conditions
Like
size not gretr than 50 kb
with = 110px, height 140 px
etc..
View 1 Replies
May 10, 2010
How Can I add watermark on video file, What is the best way? I know we can easily do on image. BUt I want on video file.
View 4 Replies
Jan 17, 2011
One of client requires to share and view the .PPT(Microsoft PowerPoint Slides) files online as video, on his web application. I know there are lots of control that plays video online but I want to know is there any active x or api that will recognize the ppt and play it as a video file or do i need build everything from scratch ? For reference you can view [URL].
View 4 Replies
Jul 30, 2010
i want code to downlaod a video file using asp.net with c#
View 3 Replies
Jan 7, 2010
i need to get thumbnail from video files using C#.
View 1 Replies
Feb 23, 2011
I 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 Replies
May 28, 2010
is there any method on showing the image for the uploaded video files which are in flv format? i saw all the video in youtube got show the image of the video. how to do it?
View 4 Replies
Feb 12, 2010
i have used "embed" tag for Flv file, Flash Player for "swf" file and "object tag for other files.. everything working fine with IE but in Mozilla only swf files working properly.. way to play video of any type in IE and Mozilla both
View 2 Replies
Apr 9, 2010
Given a URL to an image (and not the image itself), what's the most efficient of getting it's dimensions? I would like to change the height and width attributes in the image tag (<img>) if it is greater than 200x200. However, if it's smaller than that, then I'd like to keep the size as it is. (I'm using ASP.NET/C#)
View 4 Replies
Dec 22, 2010
using vb.net 2005.I am reading an image using a FileStream object and wondering this: is there a way that I can check what the dimensions are of a file before I read it using the FileStream object? the code I have now is like this:
[Code]....
View 4 Replies
Jan 27, 2010
How to Upload Video file in VS 2008 3.5
View 5 Replies
Dec 4, 2010
upload the vedio file in sqlserver database using asp.net c# .
View 4 Replies
Sep 12, 2010
How could i paly a video & audio file on an asp.net page so that the file is determined on the run time
View 2 Replies
Aug 3, 2010
am trying to read the metadata of a video file and also change/add some fields to that.
Note: .Net 3.5, VB
View 1 Replies
Nov 27, 2010
does anyone have any sample code/tutorials on processing a video file uploaded to Azure (.mov, .3gp, .avi) and converting it to flash and also creating a thumbnail file after the video has been uploaded as a blob to Azure?
View 1 Replies
Jan 12, 2010
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 Replies
Mar 4, 2011
m using asp.net 3.5 and c# on my website.Here is myquestion:I have an upload button and asp:Image on a page. An user can upload an image from his computer and that image will be displayed in the asp:image. But before I display the image, I would like to check the width and height of the uploaded image. How do I do this?
View 3 Replies
Jan 6, 2011
Im getting some images from a webpage at a specified url, i want to get their heights and widths. I'm using something like this:
Stream str = null;
HttpWebRequest wReq = (HttpWebRequest)WebRequest.Create(ImageUrl);
HttpWebResponse wRes = (HttpWebResponse)(wReq).GetResponse();
str = wRes.GetResponseStream();
var imageOrig = System.Drawing.Image.FromStream(str);
int height = imageOrig.Height;
int width = imageOrig.Width;
My main concern with this is that that the image file may actually be very large,Is there anything I can do? ie specify to only get images if they are less than 1mb?or is there a better alternative approach to getting the dimension of an image from a webpage?
View 4 Replies
Sep 6, 2010
What is the best and easiest-to-use video player for popular video extension in asp.net?
View 1 Replies
Aug 7, 2010
i am doing an task about uploading & retrive video file in asp.net. first of all tell me How Can we Upload Video files In sql server? then second one is How Can we displays that uploaded video files in my web page?
View 3 Replies
Dec 16, 2010
Is it possible to have visitors to my website hear and see audio/video "mpg" files? I could not find any controls that output audio or video. Otherwise, is linking to u-tube my only other option?
View 2 Replies
Apr 21, 2010
I'm building a cms and I want users to be able to upload videos but I'm not familiar with video upload & conversion. Is there an example or has anybody coded a solution like this? I heard about ffmpeg but I don't know how to integrate it with asp.net.
As simple solution I can make my clients upload flv files but then I would still need to get a screenshot from that fvl.
View 2 Replies