C# - Processing Video File After Uploading In Azure?
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
Similar Messages:
Mar 27, 2010
I want to be able to upload file from my .aspx page to my web server so that it can be preocessed into a different format.e.g. user will upload a doc and in few seconds it would see a pdf version of the doc on the web page.I have web service available which can convert doc to pdf.now1- how do i automate upload + conversion process.2- how do i handle big files here.3- how not to make user wait for all this thing to happen.
View 1 Replies
Sep 27, 2011
I come from MVC side, where these things make more sense (of course just because I know a bit about it) and my webforms are still sucky sucky.
I got a page where I want the user to upload a file (Excel).
Not too worried about the upload timing out, but after uploading this file will be processed (time & attendance data to be written to the database)
So what I'd like to happen is everything happen asynchronously with the page being updated as the file are being processed.
Also, I'm not sure.. won't I need excel on the server to have my code read the excel file?
View 4 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
Mar 27, 2010
I have a .aspx web page and a .asmx web service.I want to upload a file from this web page to my web server so that I can call some web services to process the file, e.g. convert uploaded doc to pdf file.1- how to upload big files?2- how do I process these files automatically? like when i upload on youtube, it automatically does some file format conversion. how can i do this.3- how to make sure that i dont make my user wait on this page , but send email or some type of alert when processing is done.
View 3 Replies
Feb 19, 2010
I want to create a site like youtube.
I am upload the file at server side successfully.
But now i want to take a Snap of the Video file at a time of uploading.
View 5 Replies
Apr 20, 2010
I am totally desparate with the task of Video Conversion, uploading & streaming. I have gone through various articles, posts, blogs and code snipped but couldnt find any full working solution for that.I was advised to work with ffmpeg and i got the functionality [URL]but later i come to know that most asp.net servers (including mine) do not allow to ffmpeg on the server.
Then i look for other solutions, some are saying to convert video files manually and then upload to website (funny hannn). Some are suggesting other site which can store our video and stream from there servers .....So i am stuck now and dont know where to go. I need a complete solution of this problem. Like Users could upload a video file (of any format or at least a good number of choice for upload file format), then they click an upload button and video conversion (e.g. to .flv took place) and the output should be displayed to a user in video player (showing our own logo, not youtube logo....etc.) and thats it.I will definately appreciate all of your comments and guidence.
View 4 Replies
Dec 7, 2010
While i am Uploading Some Video Files from my asp.net website(C#) for the first time, i foud some error which i am furnishing here under
"Access to the path 'D:inetpubvhostsdemon4netsalt.comhttpdocsStudy MaterialVideo+1' is denied."
Description:An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.UnauthorizedAccessException: Access to the path 'D:inetpubvhostsdemon4netsalt.comhttpdocsStudy MaterialVideo+1' is denied.ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
i am planning to save my files in side the "
Study MaterialVideo+1,
Study MaterialVideo+2, etc..
" Folders
View 2 Replies
Jan 5, 2014
How to show progress bar while uploading video files using ASP.Net,C#.
View 1 Replies
Feb 26, 2014
I am trying to upload large videos(more than 1GB) to youtube from webpage. But youtube is allowing me to upload max 8MB videos. So I want to reduce the size of the video and then upload the reduced video to youtube. So, how to reduce the video size.
View 1 Replies
Oct 15, 2010
I am a Bigner in asp.net c# learning. How can i create a new folder in server from my c# program. in my semester asp.net project, i want to upload video/audio files into my own newly created folder and the storing folder's name must be given by me, which means each time folder name may change during uploading time. and how can i give a picture link to that vodeo files containing in different folders and how can i play that files in the browser using a player.
View 1 Replies
Jan 19, 2011
I want to import csv file(already uploaded in blob storage) in Azure. For example I have uploded test.csv on blob storage, now i just want to import that test.csv file in .net(azure) and after importing i will insert that data into azure database. I am using C# .net.
Creating a cvs file with all rows. Upload it as blob. Parse it with a Worker role and insert it in the sql azure db.
View 1 Replies
Dec 23, 2015
I would like to work with NLog to track my application's events.How i can configure the generated log file if my server is located on Azure?
View 1 Replies
Dec 23, 2010
With the ajax file uploader, would it be possible to check the size of the image before uploading?Currently, it uploads the file to the server and then lets me know that it's bigger than the limit size.
View 3 Replies
Jun 10, 2010
i am using a file uploader to upload files. Now when i am using this on a mobile emulator with default browser IE it is uploading only those files whose name is less than 6 character. the files with name more than 6 character is not uploading through mobile emulator or mobile phone (PDA). I need this solution very soon.
View 1 Replies
Nov 20, 2013
In my asp.net project i have a folder (folder name "Data").
I upload .pdf file and save the .pdf file in My Data folder.
In same day if i upload same name file then the previous file is overwrite without any message.
So I would like to know, how can i show a message like ("same name file is exit ,Do u want to replace it").
View 1 Replies
Dec 5, 2010
I've dug around in the SDK and managed to connect to my instance of S3, go into my bucket and create an empty file, but can't figure out how to take a file from my computer and upload it. If I have dragged a file upload control onto the designer surface how do I set the properties for it in the code behind?(If I absolutely need to have a 3rd party uploader which should I use). Here is the code I have so far.
static string bucketName = "myBucket";
static string keyName = "sampleKey";
static AmazonS3 client;
protected void Page_Load(object sender, EventArgs e)
{
string accessKeyID = System.Configuration.ConfigurationManager.AppSettings["AWSAccessKey"];
string secretAccessKeyID = System.Configuration.ConfigurationManager.AppSettings["AWSSecretKey"];
using (client = Amazon.AWSClientFactory.CreateAmazonS3Client(accessKeyID, secretAccessKeyID))
{
// simple object put
PutObjectRequest request = new PutObjectRequest();
request.WithContentBody("this is a test")
.WithBucketName(bucketName)
.WithKey(keyName);
S3Response response = client.PutObject(request);
response.Dispose();
// put a more complex object with some metadata and http headers.
PutObjectRequest titledRequest = new PutObjectRequest();
titledRequest.WithMetaData("title", "the title")
.WithContentBody("this object has a title")
.WithBucketName(bucketName)
.WithKey(keyName);
using (S3Response responseWithMetadata = client.PutObject(request))
{
WebHeaderCollection headers = response.Headers;
foreach (string key in headers.Keys)
{
Console.WriteLine("Response Header: {0}, Value: {1}", key, headers.Get(key));
}
}
}
}
View 1 Replies
Sep 8, 2010
Put together a little ASP.NET Web Application project in VS 2010. It includes a connection string to a remote SQL server, which is stored in Web.config. Everything works fine on my workstation, but when I test it on the web server I get this error:onfiguration Error Description:An error occurred during the processing of a configuration file required to service this request. review the specific error details below and modify your configuration file appropriately.
[code]...
View 3 Replies
Mar 18, 2010
We are in the process of building a huge site. We are contemplating on whether to do the processing of HTML at server side (ASP .Net) or at the client side. For example we have HTML files which acts like templates for the generation of tabs. Is it better for the server side to get hold of content section (div) of HTML load the appropriate values and send the updated HTML to the browser or is it better that a chunk of data is passed onto client and make Javascript do the work?
View 2 Replies
Mar 15, 2011
I added a new report template from the Reporting section of the Installed Templates (rdlc extension). I have successfully created a connection and am retrieving data into textboxes that I have placed on the report. My problem is that I want to do a Test in the Expression template, but I cannot seem to do 'if else' statements. Can anybody give an example of how to perform conditional processing for a textbox on an rdlc page. i.e. The expression for just populating a textbox might be:
Code:
=First(Fields!Actioned.Value, "MyData")
What I want to be able to do is something like
Code:
if =First(Fields!Actioned.Value, "MyData") = "val1" then 23 else 25 end if
Coding for this control seem to take VB/VBA Style syntax.
View 5 Replies
Jan 11, 2011
I'm trying to use a java servlet in a 3rd party tool's web interface (CA service desk) to invoke it's download file functionality using a webclient in vb.net. The trouble is the text stream from response is markup and not the acutual text file stream.
It's like the page is redirecting to another page which actually presents the file for downloading. I have no idea what the redirected page URL is.
Is there a way I can process this redirected page in order to get at the download using a system.net.webclient?
View 1 Replies
Jan 20, 2011
On my current project I have to accept 2 Excel spreadsheets that will be uploaded by clients, process them and create a download package based on this information. This process includes extracting data from the sheets, updating our databases and building several PDF files for the download package. This takes between 15 seconds to 2 minutes to complete, depending on the complexity of the request. Naturally, I want to show some kind of processing indicator rather than just leaving the user hanging while the page loads.
Here's the problem: How to show this processing indicator.
I have to do a full postback to upload the files so this eliminates several nice AJAX indicator methods (sponsoring users rejected the AJAX toolkit async file upload, saying it was confusing to them). If I process on any of the page events during the postback, the page doesn't load until the lengthy process is completed so the browser/site looks 'hung'.
Basically, I need some ideas on how to display a 'building your download' graphic while the lengthy process is working that will also work with a full postback.
View 4 Replies
Aug 2, 2010
We have a very simple ASP.Net page for uploading a file to our webserver. The page has no controls - a client uses it to automatically send us a file each night.
On occasion, the file seems to not get to us, but the client reports that they have sent it.
We added some logging statements to the page, and discovered something quite odd. The page ceases to execute right in the middle of a log statement. No exceptions, just up and dies.
Here is the code-behind:
[code]....
I assume if there was a error in the transmission of the file that either an exception would be thrown from the reader.ReadToEnd() line. And if not an exception, I would expect the page processing to continue but that I may only receive part of the file (in which case it should log something).
The logging statement is only accessing a string variable, and it's inside a try-catch. NLog is the logging component we use, and we access that through the facade provided by the Simple Logging Facade project on Codeplex. So, we trust the logging component to be more or less bulletproof - we certainly don't see anything in our usage of it here that should be causing problems.
Why on earth could this page just up and stop processing like this?
The fact that we get a half-finished logging statement seems to point towards an error being swallowed in the logging system - but that just seems so unlikely - and we have NLog's internal logging on and it is not reporting any problems.
View 1 Replies
Feb 19, 2010
After checking the asp.net version on the web server it seems only the version 2.0 is available and so when I browse to the site i.e. http://servername/site
then I get this error below. Should I put something in the web.config file to solve this issue?It seems the error is to do with the reportviewer control I am using.
NOTE that the ERROR is on line 117Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify configuration file appropriately.
View 9 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