Nice module. Really easy to use. I especially like the ability to specify various presets for video sizes. This is where I'd like to make a feature request:
I am interested in a smaller size of video for a block on a sidebar column. This block is fed by a view (node title and embedded video field(s)). Given the narrowness of the block I set the video to use teaser view size of the video.
On full node view the video is scaled to be flush with side columns.
But when looking at lists of nodes (e.g. /blog) the teaser size is automatically used. I'd like a way to:
1. Specify a size for full node view
2. Specify a different size for teaser view
3. Add a size option which can allow me to have a third size to use in blocks, etc.
Alternately, since I theme all nodes, is there a way to call the video in the full node size by adapting the code below (this code shows full size in node view and teaser size in a list of nodes (e.g. /blog):
<?php if ($node->field_embed_video[0][view]): ?>
<div class="embed-video-0">
<?php print $node->field_embed_video[0][view] ?>
</div>
<?php endif; ?>
Thank you for your time.