Posted by psicomante on August 31, 2005 at 1:58pm
Jump to:
| Project: | Video |
| Version: | master |
| Component: | Code |
| Category: | task |
| Priority: | normal |
| Assigned: | LukeLast |
| Status: | closed (fixed) |
Issue Summary
I've made a patch for this module to support Macromedia Flash and Director. The problem is these formats accept parameters. Some videos and games must be inserted with these parameters. for example:
<PARAM NAME="param" VALUE="value01">Should be implemented a valid way to manage params. I think that a way similar to the poll.module is a good one...perhaps.
Comments
#1
If you have made the patch please post it here.
#2
does anyone else think this is useful?
#3
I think flash .swf support would be great, but I don't know enough about flash at the moment to come up with a patch.
#4
What will be better?
10 or more rows with two fields ( name and value)
or textarea in where we put params within certain schema (each value in a new line)
param1 = value
param2 = value2
#5
OK, so I'm working on the .swf support.
So far I have a textarea that takes parameter data in the format:
param1=value1
param2=value2
param3=value3
This supports an almost unlimited number of parameters while using the smallest form space.
Here is what I have for the HTML. object and embed are misspelled to get past the filter.
<objct width="$node->videox" height="$node->videoy"><param name="movie" value="$node->vidfile" />
<param name="custom_param1" value="custom_value1" />
<param name="custom_param2" value="custom_value2" />
<embd src="$node->vidfile" width="$node->videox" height="$node->videoy"></embd>
</objct>
Does this all look good to everyone? Any suggestions?
#6
seems the a smart solution...
Fabio
#7
Try to find a way without embed, as embed is not valid xhtml...
#8
yes we know... if you are able with php/html you can provide a patch
for w3 compatibility and I will commit to the module.
#9
Feature completed in cvs.
Fabio
#10