473,395 Members | 1,637 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

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 7651
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("display_errors","1");

to enable displaying errors.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.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_filesize

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_filesize 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_filesize

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

i changed the upload_max_filesize 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_filesize

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*******@attglobal.net
==================
Aug 30 '06 #7

Jerry Stuckle wrote:
poorna wrote:
hi Ninad

i changed the upload_max_filesize 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_filesize

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*******@attglobal.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_filesize 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_filesize

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*******@attglobal.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*******@attglobal.net
==================
Aug 31 '06 #9

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

Similar topics

2
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...
5
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
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...
8
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
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...
4
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
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...
2
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...
8
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
0
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...

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.