This project is not covered by Drupal’s security advisory policy.

Video Embed Field plugin for Warpwire videos.

Dependencies:

Installation

Install the module normally, then set the hostname on the Warpwire settings page found under "Configuration > Media > Warpwire settings".

If your videos have URLs like https://warpwire.example.com/w/S4sCAA/, the hostname should be set to:

https://warpwire.example.com

New maintainer wanted!

We're not actually using this module any more. Instead, we're using core Drupal Media with the oEmbed Providers module with a couple custom hooks:

use \Drupal\Core\Form\FormStateInterface;

  /**
 * Implements hook_oembed_providers_alter().
 */
function example_oembed_providers_alter(array &$providers) {
  $providers[] = [
    'provider_name' => 'Warpwire',
    'provider_url' => 'https://warpwire.com',
    'endpoints' => [
      [
        'schemes' => [
          'https://warpwire.example.edu/w/*',
          'https://warpwire.example.edu/w/*/',
        ],
        'url' => 'https://warpwire.example.edu/api/oembed/',
        'discovery' => 'true',
      ],
    ],
  ];
}

/**
 * Implements hook_form_FORM_ID_alter().
 */
function example_form_media_library_add_form_oembed_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
  $form['container']['url']['#description'] = t('Allowed providers: YouTube, Vimeo, Warpwire, and many more');
}

If you're still using this module, you're welcome to take over!

Supporting organizations: 

Project information

  • caution Seeking new maintainer
    The current maintainers are looking for new people to take ownership.
  • caution No further development
    No longer developed by its maintainers.
  • Project categories: Media, Integrations
  • Ecosystem: Video Embed Field
  • Created by jrb on , updated
  • shield alertThis project is not covered by the security advisory policy.
    Use at your own risk! It may have publicly disclosed vulnerabilities.

Releases