473,657 Members | 2,385 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to do video streaming?

hi all

i want to upload the video files to the server..
then i encode all the video files into flv files ...
and then i am go to streaming ...
in the mean while i create the thumbnail image from video..

doubts:

how to upload the video files to web server?
(here we r using freebsd as webserver)

which streaming server i use?
(real time,flash media player etc..)

how to get uploaded video files from web server to streaming server?
(how to do this?)

i have no idea about this..

plz let know the solution for this...

Thanks in advance..

Regards,
poorna

Aug 28 '06 #1
8 7667
Hi Poorna
You can use file input element of HTML to upload any file.
there is no specific for upload procedure for video files you can
upload any file by this element then it will get uploaded in a temp
folder of php you have to save the file in your desired location from
php and then process whatever you want to process on it.
mail me if you have any more problems in it

Thanks
Ninad

poorna wrote:
hi all

i want to upload the video files to the server..
then i encode all the video files into flv files ...
and then i am go to streaming ...
in the mean while i create the thumbnail image from video..

doubts:

how to upload the video files to web server?
(here we r using freebsd as webserver)

which streaming server i use?
(real time,flash media player etc..)

how to get uploaded video files from web server to streaming server?
(how to do this?)

i have no idea about this..

plz let know the solution for this...

Thanks in advance..

Regards,
poorna
Aug 28 '06 #2
Hi Ninad ,

thanks for ur reply..
Already i had done image uploading..
but i cant to upload the video files ...
i run my codings but it didnt show any error..
that was my problem...

What can i do for this ??
any other special process for video file uploading??
plz let me know..

Thanks
poorna

Aug 28 '06 #3
poorna wrote:
Hi Ninad ,

thanks for ur reply..
Already i had done image uploading..
but i cant to upload the video files ...
i run my codings but it didnt show any error..
that was my problem...

What can i do for this ??
any other special process for video file uploading??
plz let me know..

Thanks
poorna
As Ninad said - there is nothing special about uploading video files.
If it doesn't work, PHP will have some errors. Check your error log -
see your php.ini file for location - it may be the Apache error log or a
separate file.

Additionally, for testing, you can use:

error_reporting (E_ALL);
ini_set("displa y_errors","1");

to enable displaying errors.
--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Aug 28 '06 #4
Hi Poorna
do what Jerry had told in previous post and alos check the
file upload limits by printing the phpinfo(); if the size of the file
is more than the maximum size allowed in the php then also it will not
upload the file. that is upload_max_file size

Thanks
Ninad
poorna wrote:
Hi Ninad ,

thanks for ur reply..
Already i had done image uploading..
but i cant to upload the video files ...
i run my codings but it didnt show any error..
that was my problem...

What can i do for this ??
any other special process for video file uploading??
plz let me know..

Thanks
poorna
Aug 30 '06 #5
hi Ninad

i changed the upload_max_file size to 15m in php-ini file ...
now the video file(which is in KB size) was uploaded..
but the video file(which is in MB size) was not uploaded...
i cant to find the error..
what can i do for this??
plz help me to come out from this..

Regards
poorna


Ninad wrote:
Hi Poorna
do what Jerry had told in previous post and alos check the
file upload limits by printing the phpinfo(); if the size of the file
is more than the maximum size allowed in the php then also it will not
upload the file. that is upload_max_file size

Thanks
Ninad
Aug 30 '06 #6
poorna wrote:
hi Ninad

i changed the upload_max_file size to 15m in php-ini file ...
now the video file(which is in KB size) was uploaded..
but the video file(which is in MB size) was not uploaded...
i cant to find the error..
what can i do for this??
plz help me to come out from this..

Regards
poorna


Ninad wrote:

>>Hi Poorna
do what Jerry had told in previous post and alos check the
file upload limits by printing the phpinfo(); if the size of the file
is more than the maximum size allowed in the php then also it will not
upload the file. that is upload_max_file size

Thanks
Ninad

Where does your php.ini file indicate your error log is? If there isn't
one in the php.ini file, it will use your Apache log.

Of course, you can always set a log file in the php.ini then change it
back if you want.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Aug 30 '06 #7

Jerry Stuckle wrote:
poorna wrote:
hi Ninad

i changed the upload_max_file size to 15m in php-ini file ...
now the video file(which is in KB size) was uploaded..
but the video file(which is in MB size) was not uploaded...
i cant to find the error..
what can i do for this??
plz help me to come out from this..

Regards
poorna


Ninad wrote:

>Hi Poorna
do what Jerry had told in previous post and alos check the
file upload limits by printing the phpinfo(); if the size of the file
is more than the maximum size allowed in the php then also it will not
upload the file. that is upload_max_file size

Thanks
Ninad

Where does your php.ini file indicate your error log is? If there isn't
one in the php.ini file, it will use your Apache log.

Of course, you can always set a log file in the php.ini then change it
back if you want.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===

Hi jerry

really thanks for your reply...
we didnt have php log file
we r using apache log ...

how uploading is belonging to set the changes in apache log ??
i cant understand..
plz explain me..

regards
poorna

Aug 31 '06 #8
poorna wrote:
Jerry Stuckle wrote:

>>poorna wrote:
>>>hi Ninad

i changed the upload_max_file size to 15m in php-ini file ...
now the video file(which is in KB size) was uploaded..
but the video file(which is in MB size) was not uploaded...
i cant to find the error..
what can i do for this??
plz help me to come out from this..

Regards
poorna


Ninad wrote:

Hi Poorna
do what Jerry had told in previous post and alos check the
file upload limits by printing the phpinfo(); if the size of the file
is more than the maximum size allowed in the php then also it will not
upload the file. that is upload_max_file size

Thanks
Ninad

Where does your php.ini file indicate your error log is? If there isn't
one in the php.ini file, it will use your Apache log.

Of course, you can always set a log file in the php.ini then change it
back if you want.

--
============= =====
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@att global.net
============= =====

Hi jerry

really thanks for your reply...
we didnt have php log file
we r using apache log ...

how uploading is belonging to set the changes in apache log ??
i cant understand..
plz explain me..

regards
poorna
You need your Apache error log, not the Apache Access log. They are two
different logs.

Without knowing the real error any attempt to fix the problem is just
guessing. And we can keep guessing forever.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Aug 31 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
9623
by: Leon Lien | last post by:
I need to hide my video streaming source URL such as mms:\\123.11.123.24\test.wmv I know how to hide image source using another ASP at the <img src=> tag. But what about streaming Video ? Is there a good way to hide it in ASP code ? Thanks for any reply ...
5
5455
by: jen_designs | last post by:
How do I create custom controls for an embeded video. I need stop, play, pause, etc. Any thoughts?
1
10329
by: Lonewolf | last post by:
Hi everyone, pls forgive me for my lack of knowledge and skills if my question sounds very stupid. I am trying to implement a video conferencing software and I am currently looking at a few set of technologies, among them WMP, RealMedia, H.323 and XviD (not sure if it is suitable for streaming even) . I would like to seek the advice of those experts on the following questions, 1) What is the best technologies to be used, in terms of...
8
3624
by: Nehmo | last post by:
When a page has a JavaScript "link" to a video, like http://www.msnbc.msn.com/id/10478942/ . How do you get the URL of the actual video? Isn't it in the source somewhere? -- )|:__ Nehmo __:|(
2
9748
by: mpaliath | last post by:
Hi guys I am currently involved in a project which requires me to recieve and play streaming video as well as send it. In Visual C++ is there any free library which helps me do this as 'streaming' is not part of the actual project, i am allowed to use external libraries. Also could anyone tell me where I can learn about video streaming in c++ so I can code the streaming part myself too thx
4
8844
by: chix23 | last post by:
Could you give sample codes or suggestions on how to build a web application with live video streaming? Thanks!!!
1
14744
by: michael | last post by:
Hello all, I have a Linksys WVC54GC network camera that I am trying to integrate into a website and to enable browsers other than IE to use. Linksys, in their ever-short-sighted ways, decided to make this device only compatible with IE. It requires IE and ActiveX. However, you can access the video stream directly with the following URL http://1.2.3.4/img/video.asf
2
8433
by: SPG | last post by:
Hi, Two questions for you all.. Firstly, is there a way of streaming video using PHP? At the moment I just have a link to a video file and the whole thing downloads before playing which is a bit of a chore as the video file is pretty huge. Secondly, I want to restrict access to the video using a password. Can anyone think of a nice way of doing this? I thought about having the video
8
2431
by: Oscar Arreyano | last post by:
I did a website for a friend's company where they wanted a 'downloads' section similar to standard file sharing you see all over the place. Everything works great except for video. I know there are codecs involved, however, if i create a video (I've tried mpg, avi, wma so far) I can watch it on my pc from disk just fine. Since my pc is also my test environment, I try to open the same video from the test site and I get the standard 'Can't...
0
8420
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8740
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8516
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7353
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.