This is a discussion on WMV Split within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi, I am trying to read wmv file formats. I would like to develop a script in php which would ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I am trying to read wmv file formats. I would like to develop a script in php which would split WMV files . Like suppose user enter starting time and end times of some particular WMV file . then my script should be able to make a new WMV file which would be played from start time entered by user and end at end time entered by user . Can it be done in PHP ? Any pointer on how to do it ? As far as i explored i got hold of http://sourceforge.net/projects/getid3/ which can extract information about WMV format files. Any help in would be greatly apprecited. Awaiting Your Reply, Thank You, Raja. |
|
|||
|
"Raja" <rokkamraja@gmail.com> wrote in message
news:1165751137.659094.105780@l12g2000cwl.googlegr oups.com... > Hi, > I am trying to read wmv file formats. I would like to develop a > script in php which would split WMV files . Like suppose user enter > starting time and end times of some particular WMV file . then my > script should be able to make a new WMV file which would be played from > start time entered by user and end at end time entered by user . > > Can it be done in PHP ? Any pointer on how to do it ? As far as i > explored i got hold of http://sourceforge.net/projects/getid3/ which > can extract information about WMV format files. > > Any help in would be greatly apprecited. > > Awaiting Your Reply, > Thank You, > Raja. Firstly, try paying attention to your previous posts! I responded to this *exact* same message several days ago. Actually, 11 days ago. http://ffmpeg-php.sourceforge.net/ -Lost |
|
|||
|
Hi,
Using ffmpeg we can get all the information of WMV file , its header info data info ,e tc but what I want is how to make a WMV file play from a user given time inputs Thanks On Dec 11, 3:09 am, "-Lost" <spam_ninjaREMOV...@REMOVEMEcomcast.net> wrote: > "Raja" <rokkamr...@gmail.com> wrote in messagenews:1165751137.659094.105780@l12g2000cwl.g ooglegroups.com... > > > > > Hi, > > I am trying to read wmv file formats. I would like to develop a > > script in php which would split WMV files . Like suppose user enter > > starting time and end times of some particular WMV file . then my > > script should be able to make a new WMV file which would be played from > > start time entered by user and end at end time entered by user . > > > Can it be done in PHP ? Any pointer on how to do it ? As far as i > > explored i got hold ofhttp://sourceforge.net/projects/getid3/which > > can extract information about WMV format files. > > > Any help in would be greatly apprecited. > > > Awaiting Your Reply, > > Thank You, > > Raja.Firstly, try paying attention to your previous posts! I responded to this *exact* same > message several days ago. Actually, 11 days ago. > > http://ffmpeg-php.sourceforge.net/ > > -Lost |
|
|||
|
"Raja" <rokkamraja@gmail.com> wrote in message
news:1165810306.211874.152230@f1g2000cwa.googlegro ups.com... > Hi, > Using ffmpeg we can get all the information of WMV file , its header > info data info ,e tc but what I want is how to > make a WMV file play from a user given time inputs > > Thanks Which is exactly what ffmpeg can do! It can create a new file based on the time inputs you spoke of. For example, a movie playing at 24fps that lasts 10 seconds is 240 frames long. Each frame lasts 0.04 seconds long. Extract what you need, make a new file and serve it for playing. -Lost |
|
|||
|
> Using ffmpeg we can get all the information of WMV file , its header > info data info ,e tc but what I want is how to > make a WMV file play from a user given time inputs you can achieve this by using windows metafiles to specify start time and duration of the clip. http://msdn2.microsoft.com/en-us/library/aa393397.aspx use STARTTIME and DURATION elements. |