forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Upload => Topic started by: midorianne on July 07, 2004, 11:16:19 pm

Title: WMP upload problems
Post by: midorianne on July 07, 2004, 11:16:19 pm
I have read through all the other post & could not fix the problem.  I am trying to upload small 30 sec video files in WMP format.  I changed the file names as advised & it still says "o files uploaded".  Any suggestions?  ???
Title: Re: WMP upload problems
Post by: Casper on July 08, 2004, 12:37:14 am
What do you mean by 'small' exactly.

And by the way, we manage to read all the other posts on these boards, without the need for a magnifying glass, so why did you think you had to post it all in bold text?
Title: Re: WMP upload problems
Post by: midorianne on July 08, 2004, 02:17:38 am
Sorry about the bold... habit from my email...  :-*

The files are 3000 kb, I think that is small.
Title: Re: WMP upload problems
Post by: Joachim Müller on July 08, 2004, 07:09:41 am
WMP is an unsupported file type, here's the query that builds the list of supported movie file types - if your file is not in the list, you could try to add it manually to the database (at your own risk):
Code: [Select]
INSERT INTO CPG_filetypes VALUES ('asf', 'video/x-ms-asf', 'movie');
INSERT INTO CPG_filetypes VALUES ('asx', 'video/x-ms-asx', 'movie');
INSERT INTO CPG_filetypes VALUES ('mpg', 'video/mpeg', 'movie');
INSERT INTO CPG_filetypes VALUES ('mpeg', 'video/mpeg', 'movie');
INSERT INTO CPG_filetypes VALUES ('wmv', 'video/x-ms-wmv', 'movie');
INSERT INTO CPG_filetypes VALUES ('swf', 'application/x-shockwave-flash', 'movie');
INSERT INTO CPG_filetypes VALUES ('avi', 'video/avi', 'movie');
INSERT INTO CPG_filetypes VALUES ('mov', 'video/quicktime', 'movie');

GauGau
Title: Re: WMP upload problems
Post by: midorianne on July 08, 2004, 10:06:42 am
Thank you.. I will just convert them.   :)