Web Forms :: Retrieving Photo And Video File Details And Properties?
Apr 18, 2010
If you right click on (e.g. a photo) and go to Properties > Details, you might get the following info:
Title
Subject
Rating
Tags
Comments
Authors
Date Taken
Program Name
Date Aquired
Copyright
Image ID
Dimensions
Width
Height
Horizontal resolution
Vertical resolution
Bit depth
Compression
Resolution unit
Color Representation
Compressed bits/pixel
Camera maker
Camera model
F-stop
...
Date created
Date modified
...
Computer
how to retrieve this file information in ASP.NET? I am building an upload page and want to retrieve more information than just the basic file-name, file extension etc info. I am coding in VB. It is written into the file itself so it must be possible to access this information somehow. However, my search efforts so far have not got me very far...
View 5 Replies
Similar Messages:
Mar 3, 2010
I am relatively new to ASP.NET. I am just wondering if there is way to read values from properties file (similar to rading a properties file from JSP or java).
For example if a property file has something similar to this:
[Code]....
I would like to read all the values for username_list (comma seperated) and also the value of is_valid.
View 2 Replies
Jan 22, 2011
in asp.net i want the user to chose a photo to upload from their HD . then i want the uploaded photo displayed and an hyperlink option to save or reject this photo. if accepted the filename will be stored in a DB.
the problem is displaying the photo before it has been saved.
I display strFileName which works on my PC but not on my laptop.
[code]
View 4 Replies
Sep 11, 2010
I'm trying to bind custom object to details view.
The problem is that enum property fields are not show.
Is there any way to show enum property fields in details view ?
I put some example code below (I do not specify any rows mappings, they are generated dynamically because different kind of objects are bound to details view):
[Code]....
View 1 Replies
Apr 12, 2010
Usual situation: DataList and LinqDataSource with anonymous types...
Is there any way besides reflection to retrieve properties of anonymous typed DataItem in DataList_ItemDataBound event?
View 2 Replies
Jan 27, 2010
I h one problem, i need to upload many photo at a time using file uploader control in asp.net, only one photo I m able to upload, but problem is like after selecting course all records are coming, i need to attach one one file uploader (photo) option with all records so that after clicking[after selecting photo] on save button all the records [photos] h to be save in database, can U people plz. tell me what to do , how , for that do I need to make user control.
View 6 Replies
Feb 15, 2010
I have the reorderlist and a DELETE as link button. So far so good as far as I can tell that when I clicked on the delete link button, it deletes photo value from the database per the ID PK. However, I want to be able to delete the right photo file on the server/disk (jpg, gif..) but I could not figure out the logic to do so.
View 1 Replies
Nov 13, 2010
Is this possible to get the details like size, creationdate, modification date of a file hosted at some ftp server? I can download/upload files to ftp directory using ASP.Net but my requirment is to download the last modified file. So can we sort files of a ftp directory by modified date using ASP.Net code?
View 3 Replies
Dec 6, 2010
I just created a profile page were users can enter their name current location age , etc. I want users profile info be created together with their profile photo on the top left hand corner. Ive created a database for the profile but how to upload a profile pic using either file upload or any other method.
View 1 Replies
Jan 7, 2010
i need to get thumbnail from video files using C#.
View 1 Replies
Jan 27, 2010
How to Upload Video file in VS 2008 3.5
View 5 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
Feb 4, 2011
I have an application that I am trying to add url routing to. Part of my application though, looks at the requested page, and looks for a folder that the file requested is in, and applies different rules depending on the folder. For example, the two files
~/Folder1/page.aspx
and
~/Folder2/page.aspx
would have some different rules applied to them because they are in different folders.What I need to do, is get the actual file information from a request when that request comes from a routed url. I do not need the entire file path, just the relative path. Essentially, I am looking to retrieve the value of the third argument in the MapPageRoute method, e.g.
routes.MapPageRoute(
"RouteName",
"RouteURL",
"~/Folder/Default.aspx"
View 6 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
Mar 24, 2011
I've configured progressive video player on my website. When I'm passing direct url to .mp4 file everything works fine.
when I'm trying to pass file bytes from my .ashx file. Player begins to play but if you try to seek it'll write buffering, buffer video till the seekpoint and continue to play.
here is my file download script in .ashx handler
FileStream sourceFile = new FileStream(FileName, FileMode.Open); long FileSize; FileSize = sourceFile.Length; byte[] buffer = new byte[(int)FileSize]; sourceFile.Read(buffer, 0, (int)sourceFile.Length); sourceFile.Close(); context.Response.AddHeader("Content-Disposition", "attachment;filename=file.mp4"); context.Response.ContentType = "application/octet-stream"; context.Response.BinaryWrite(buffer);
View 1 Replies
May 4, 2010
I'm having a problem with file streaming where this file is a video that is streamed to a FLV player.
Essential components for understanding the problem:
- An asp.net page called Viewer.aspx that has de FLV player incorporated in the HTML.
- An asp.net page (It could be an http handler but in this case it's not) called Downloader.aspx that gets a flv file from somewhere on the web and writes it to the Response Output Stream.
Everytime Viewer.aspx is called, it makes Downloader.aspx the source of the the FLV player and the video is correclty presented and streamed into the player.
The problem I am having now is that any user interaction with the page (even typing an URL inside the same website domain on the browser address bar) becames hung until the video download ends.
I can measure this video download with HTTP Watch for example, and confirm that just after the video download into the player ends, the command issued by the user is immediately processed (or the browser goes to another page if the user typed a new address in the browser address bar).
I tought that it could be the limit of 2 connections per domain, but HTTP Watch only shows one active connection (the video download into the FLV player).
Even if it was this 2 connections limit, I think a nice solution would be to somewhat detect the user interaction with the page and abort that video download.
View 1 Replies
Feb 4, 2010
I am building a site which allows people to upload excel files to a secure D: on the IIS server. I am using the impersonate function (with username and password in webconfig) to allow people to save the files to the secure
Can someone point me in the right direction how I can then allow users to retireve / open these files? I have tried :
[code]....
View 1 Replies
Apr 27, 2010
I have a uploader on my page which saves a video file, and then i call ffmpeg to convert it to a .flv standard. The problem is, i need to pull the video duration in from the file, and the ffmpeg output even says it, but when i tell the parameters to do the ffmpeg -i filename > fileinfo.txt it still doesnt take that information.
how i can pull this type of information?
Example of what i was trying:
[Code]....
View 2 Replies
Jun 18, 2010
What is the best way to restrict a file upload control to only accept video files only ?
View 3 Replies
Jan 22, 2010
Iam having a avi video file of 250MB.i want to play it through it media player control.it plays but first it download the whole file than plays.so what i want is to buffer that file.so at moment user clcks on play buttonit starts playing the file.
View 6 Replies
Feb 19, 2013
How to create log file for asp.net 4 when error send email for me with details error...
View 1 Replies
Feb 12, 2011
i want to embed flash file in asp.net page.I have used below code for same:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/
View 1 Replies
Feb 10, 2011
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 ?
View 4 Replies
Feb 2, 2011
I am using VS 2005.An 1.aspx page is there, retrieving data from an xml file and having a button.On a button click same 1.aspx page should open new window retrieving data from another xml file with the help of query string.
View 3 Replies