Trying To Include A Remote Asp Page With Streaming Video
Basically, we are working on a website where we want people to be able to see about 10minutes of our live streaming webcams on a once off basis. We are working on IP address sessions to do this, my question is however we want to have a single page with a countdown timer and the streaming video.
Now the timer is located on a local server but the streaming video is coming from a remote location, can we include use the remote asp page inside our local page. So far we keep getting the remote url displayed but not the media player.
View Replies
ADVERTISEMENT
i used active x plugin (quicktime), in source file of the plugin i placed the code "Myservermyvideovideo.mov" but when i browse the page, it cant view the view, i used iis6.0. ider an addtiional code on this when retrieving the source from a network?
View Replies
View Related
does anyone have a good way of streaming video on my site? I guess it doesn't matte what format they are in, is there something which kicks off media player?
View Replies
View Related
I'm about to venture onto a new project of developing an ASP Page that captures images from a streaming web camera, and displays them (refreshs) the image every 15 seconds.
The question I have, is it possible to capture images (every 15 secs- from the webcam on the intranet) and store that snap shot as say a .jpg file in a folder, and then have the ability to continuously add images to this folder, so at a later date you could develop a system that would display photo after photo simultaneously, fast motion of the project in action.
View Replies
View Related
I am looking for live streaming audio/video technology to integrate in my ASP .NET web application. My searches led to a couple of open source products but most of them were old or came under the form of a full blown web application - not an SDK.
The project is academic and is ample therefore building my own is not feasible at this time. The end product will have to provide the functionality of a commercial product but will only be used as a proof of concept so no commercial use is intended.
Ideally all I am looking for is a library that can establish live-audio video connection between two computers over the internet and allows the video be embedded within a web page (with no or a minimum set of other controls). Also there has to be possible to transmit high quality video.
View Replies
View Related
I need to do online streaming multimedia file on my web portal, just like those online portal that selling MP3. User need to click on the preview link to stream the audio file to listen before they decide to buy the file or not. How do i link my audio file in my web server to allow it to be stream? Totally lost on this function,
View Replies
View Related
i need to include the video , in my web page , user only able to view the video , not to download it.
View Replies
View Related
here is my code:
set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP")
objXMLHTTP.open "GET", "http://www.xxx.com/index22.asp", false
objXMLHTTP.send ""
intStatus = objXMLHTTP.status
response.Write(intStatus)
let say the addres is not exist, but the web server will auto redirect the page to a user customize page, and the object track the page as 200. Is there any way to track the error even the page is redirect to a 404 page ?
View Replies
View Related
I've been playing with the idea of just how to use an ASP page to provide a
remote function call. In an ideal world this would be a web service but how
can you do it if restricted to ASP 3.0 ?
Idea 1 was to write an ASP page that accepted arguments using the classic
?X=1&Y=2 type of strings and have the page return an ADO disconnected record
set containing the results of the action. This is call very well, and works,
but you do have to allow the browser to create an ADODB.RecordSet in which
to place the results which goes against some security principles. Code:
View Replies
View Related
I am currently attempting to convert from PHP to ASP and I am having some difficulties.
Foremost, from my PHP page I have pages that reference HTML source code from a remote page, write it to a local page and then displays it. I haven't been able to find any way to display this HTML source anywhere.
View Replies
View Related
PHP script is in script.php
Now, there's a page.asp
How can it be possible to include the script.php into page.asp (and make it work) without changing any extensions of files? SSI is supported, but i don't know how to use it.
View Replies
View Related
im trying to make a string and in that string have an include in to include a .asp page is this possible. Code:
myhtml = ""
myhtml = myhtml & "This Should Work "
myhtml = myhtml & " <!--#include file ="TESTR.asp"--> "
View Replies
View Related
I have different database connections that I use for DEV and PROD versions of our web app. I want to put the database connection string in one location so I only have to change it once when we push live.
So I put it in an include file and reference it in all my asp pages as:
<!--#include file="includes/db_conn.inc"-->
But this will not work with the global.asa page. How can I reference an include page from global.asa?
View Replies
View Related
I have designed asp pages where all pages have common header and footer. I have added Images to the footer page called as footer.asp.
now i have the footer.asp in another folder
and i call that footer.asp within my index.asp page as a include page.
but the images in the footer.asp are not displaying in the index.asp.
what could be the problem?
View Replies
View Related
i have many *.html* pages with the same header. i wanted to make one *header* file and put a link to that file in all html pages. So if i ever need to make changes in the header, i will need to edit only 1 file rather than all pages.
for *.asp* pages this code works fine:-
<!-- #include file="filename.inc" -->
but the same **include** does not work for *.html* pages. i guess there is some other way to put a link!
View Replies
View Related
I'm make a site that will contain an include statement that updates and gets data from the DB, but the text after the include doesn't display. When I don't have the include statement, the page displays perfectly.
Here's my statement:
<!-- #include file ="getData.asp" -->
Please let me know why it's not letting me display anything after my include statement, and what I can do to fix that.
View Replies
View Related
I have a asp project. One of the module, i wish to develop in .net, can i include it into my asp project?
View Replies
View Related
On the rest of the site, virtual includes work, but on one particular page, non-virtual includes work, but virtual ones do not... even though the include statements are copy and pasted from working pages, or are part of non-virtual includes that are included.*
I assume there is something in the page's code that is prohibiting virtual includes? Code:
View Replies
View Related
I am using:
Response.ContentType = "application/msword"
Response.AddHeader "Content-Disposition",
"attachment;filename=Letter.doc"
to download my asp page to the client. The download process works great but when I open the .doc file it is missing the image included within the html <img> tag of the .asp page. How do I get the image to come down with the text?
View Replies
View Related
I am running IIS 6.0 on Windows 2003.
I would like to be able to run a perl script from a web page and
include the output.
I have tried doing it with an ssi:
<form action='docsearch.shtml' method='get'>
<!--#exec cgi="/cgi-bin/docsearch.pl-->
</form>
This correctly ran the script, but it was unable to include the
QUERY_STRING from the parent URL into the included perl script, and
there seems no work around to enable me to do that on IIS 6.0,
therefore on this thread:
http://groups.google.com/group/micr...6ae0d85395a3d72
I was recommended: "to a simple ASP page which will easily do exactly
what you want because it actually has the functionality you want, by
intention, and is supported." Code:
View Replies
View Related
I'm building a site which runs on 4 templates, each a different colour. I would like to pull in different content into each template using ASP.NET, similar to the php version of index.php?page=content.
I've not programmed in ASP before so am hoping someone can either supply me with a script or point me in the right direction.
View Replies
View Related
I have a pc as a web server, i have some asp pages on it and functions
perfectly, recently bought a tv card so i can watch tv on my pc and installed
on it.what i want to do is to put in an asp page the video generated from
the tv card so others in my lan can watch live tv trough an asp page.
I think its posible. Its the same idea of using a web cam in your pc to view
what is happening in your home trough internet.
View Replies
View Related
Is anyone know the streaming (playing while downloading) in asp. Actually right now it's downloading all the song before it plays.
View Replies
View Related
I would like to ask something regarding my project. i've been planning to develop a website using asp code for streaming multimedia features.
unfortunatly i have zero knowledge bout all this things that needed. can someone give me a rough guideline abt what should i do step-by-step. such as what database should i use. how can i store or create a database that can hold my multimedia files?
View Replies
View Related
i need to view audio and video files on asp files...something like youtube, but from my own server and i want that files be secure...that the files can be view only from my page how can we make it happen?
View Replies
View Related
I need to make an asp site that is linked to a database which holds the pysical paths to several video files. A user to the site can request a particular video and once a few requests have been made to the same video, the requests are batched and then the video is loaded from the database into the users browsers, so in other words...Near video on demand (NVOD).
I cannot find any information on the web to help me achieve this, and so I hope somebody here will be able to help me. How do I go about creating such a system!! Where do I start?
View Replies
View Related
I have an active-x control on my asp that loads a wmv video file.But i have a problem viewing the video until i have download the whole video on the active-x control.
Is there a way to see a portion of the video without complete download?
View Replies
View Related
I want to ask if there is a way of converting video files like mpeg,avi etc to swf files on server using asp code.
View Replies
View Related
I am writing an ASP application that deals with the TV tapes and two of the fields is what I am having issues with. I need to store the duration of the program i.e. DURATION field only to accept Numerical entries in the form 000:00:00 (min:secs:frames).
I also need to store the TIMECODE field only to accept Numerical entries in the form 00:00:00:00 (hours:mins: secs:frames). What datatype should I be using in my Access 2000/ 2003 database. How can I validate this field when allowing users to add the correct
data.
View Replies
View Related
I need to make an asp site that is linked to a database which holds the pysical paths to several video files.
A user to the site can request a particular video and once a few requests have been made to the same video, the requests are batched and then the video is loaded from the database into the users browsers, so in other words...Near video on demand (NVOD).
I cannot find any information on the web to help me achieve this, and so I hope somebody here will be able to help me. How do I go about creating such a system!! Where do I start?
View Replies
View Related
I am looking for a way to deliver audio/video files to users as that user do not know the url of file. For Expamle I have abc.mp3 and some one wants to download this file he has to click to a link which takes him to xyz.asp and start downloading file abc.mp3 but he never know full url of abc.mp3.
View Replies
View Related
We have a need to be able to edit videos uploaded to us. Need to be able to resize them, resample,convert to various formats, etract images, overlay images, etc.
I've seen a few controls that do this, but wanted to know if anyone had any feedback on any of them. If you've used any of the ones on the market, please give your feedback on ease of use and stability.
View Replies
View Related
Here is a written descripton of my webpage.
One frame split down the middle. The left side is the menu and the right
displays what is selected from the menu.
the user selects from the menu and on the right, clicks on "download image"
link. the user is presented with a download dialog box. The user saves the
image and when it is completed goes and selects another item from the menu.
But this time nothing happens.
It is like i have to refresh the page before anything works again. It is
like it is stuck on the ASP binary stream file that forced the download.
on my link i have
<a href="donwload.asp" target="right">download image</a>
How can i fix this?
View Replies
View Related