I get "unable to determine file format" on all my large transport stream files.
I have used a 64bit operating system that supports large integers in PHP.
The error message is the same with two different progragam's I have use to rip the dvd's: MPEG streamclip & VLC.
Any idea what caused this problem?
unable to determine file format for TS transport stream
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
- Attachments
-
- VLC info
- CapturFiles_1.png (42.73KiB)Viewed 32122 times
-
- getID3() info
- CapturFiles.png (51.97KiB)Viewed 32122 times
-
- getID3() v1 developer
- Posts:1477
- Joined:Fri May 04, 2001 4:00 pm
- Are you a spambot?:no
- Location:Northern Ontario, Canada
- Contact:
Re: unable to determine file format
MPEG-1 / MPEG-2 video support is very limited in getID3(). I've somehow never found good workable documentation to fully support these formats properly.
If you can send me the first 100kB or 500kB of the file I can try taking a look and see if it's something obvious, but no promises.
If you can send me the first 100kB or 500kB of the file I can try taking a look and see if it's something obvious, but no promises.
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
Re: unable to determine file format
Because I coudn't uploud the files on the forum I have send you a mail.James Heinrich wrote:MPEG-1 / MPEG-2 video support is very limited in getID3(). I've somehow never found good workable documentation to fully support these formats properly.
If you can send me the first 100kB or 500kB of the file I can try taking a look and see if it's something obvious, but no promises.
I used this litle script to get the first 500 k:
Code: Select all
$data = file_get_contents ('/data/Video/Music/LIVE - LIVE at the Paradiso (2008).ts',null, null, null, 500*1024);
file_put_contents('/data/first_500k_02.ts', $data);
-
- getID3() v1 developer
- Posts:1477
- Joined:Fri May 04, 2001 4:00 pm
- Are you a spambot?:no
- Location:Northern Ontario, Canada
- Contact:
Re: unable to determine file format
On Windows, not easily. On *nix, see head (also tail is related). e.g. head -c512000WaldoMonster wrote:Can this also be done from the console?
-
- getID3() contributor
- Posts:112
- Joined:Mon Apr 01, 2002 12:20 am
- Location:Netherlands
- Contact:
Re: unable to determine file format
Thanks, that is very helpful!James Heinrich wrote:On Windows, not easily. On *nix, see head (also tail is related). e.g. head -c512000
I'm using Linux just for a half year ;-)
-
- getID3() v1 developer
- Posts:1477
- Joined:Fri May 04, 2001 4:00 pm
- Are you a spambot?:no
- Location:Northern Ontario, Canada
- Contact:
Re: unable to determine file format
That's half a year more than me ;)
-
- User
- Posts:1
- Joined:Mon Oct 22, 2012 11:50 am
- Are you a spambot?:no
Re: unable to determine file format
ut what about other opensource projects such as ffmpeg? They tend to correctly detect the width x height of FLV files when I convert FLV to MPEG-4 for example?
-
- getID3() v1 developer
- Posts:1477
- Joined:Fri May 04, 2001 4:00 pm
- Are you a spambot?:no
- Location:Northern Ontario, Canada
- Contact:
Re: unable to determine file format
What about it?angleblue63 wrote:ut what about other opensource projects such as ffmpeg?