It would be nice if there was an option to include a link to download the originally uploaded file.

Comments

mariusooms’s picture

You could always include a cck field pointing to the url?

Marius

jhedstrom’s picture

This could be done via a cck field formatter (just choose generic file display). However, that is less than an ideal solution because you can only use one formatter per field, thus giving up the actual video display. If I get time I will add this as an option to the video field formatter (patches are also happily accepted).

In the meantime, I've gotten around this issue on several sites by creating my own theme function to display the video, and then appended the following to the output:

  // the "field_video" part will change, depending on your field name.
  $file = $node->field_video[0];
  $output .= theme('filefield_file', $file);