Archive for the ‘Revver’ Category
Should I Remove My Videos From Revver for Non-Payment?
This is the question I’m asking myself this afternoon. There was a time when Revver video quality, and the length of accepted video was superior to YouTube. Bonus, they paid video publishers for the play and relative ad clicks that published videos received. They even paid bloggers for republishing(embedding) other publishers videos on a blog.
It seemed like a magic formula for viral success with a profit driven process.
But for what ever reason they couldn’t keep the ship afloat and on course. A few months back they went completely offline for several weeks without a word. They stopped paying at least some publishers, maybe all. The ship was leaking and possibly going down.
I stopped publishing videos to Revver about that time for two reasons.
- My TubeMogul account with them, just stopped connecting. I have lots of issues with TubeMogul. I loved the service when it first went live but for reasons that are a mystery too me the service continually loses connections with my video accounts and never lets me re-establish a connection. ???? I’ve put in a call to TubeMogul and left a message with Eugene, whom I met at a couple of the new media events (New Media Expo and Blogworlds). I do not know if they are going down for the count too, if there is a bug in the system or my account, or if this is their passive-aggressive way to get me to upgrade my account. (The problem with TubeMogul’s account upgrades is that they don’t publish their service fees which is sketchy at best, and problematic for new customers to test their services and ROI at worst. Any company that provides online services and does not disclose their rates is making a big mistake.)
- Disclosure – I’m wearing a TubeMogul t-shirt while I type this article.
- The more important reason had to do with Dragon Naturally Speaking. I did a lot of video demos and tutorials with Dragon Naturally Speaking. I collected these in a blog and on a landing page for the product and earned a living from the process through affiliate commissions. For a while I included Revver videos, but they were serving up ads to my competitors and sucking traffic away. Even worse some of those ads showed fake prices and that was torpedoing conversions for the visitors that went through my funnel anyway.
My own revver videos were literally hurting business, and then to put the rotten icing on the cake, they stopped paying.
So now, I’m looking at the ugly situation of either leaving existing videos there, or deleting them. In general, I do not like to delete content anywhere. Especially videos that can be embedded as I lose touch with deep links that might be pointing in to me. But I think in this case I may be looking at a situation where it makes sense to chuck them.
How to Validate Revver Code?
I have been doing a lot more with Revver videos lately with simple (very simple) video tutorials on several topics. I noticed that the Revver code as offered when sharing Revver videos did not validate. I searched the Revver forum and came up empty. I checked the Revver blog and noticed that it was in need of some serious validation itself.
I’m not casting stones, its a constant struggle for myself as well, but maybe we can agree that having a validated code option is good, right?
So I left a comment on the Revver blog and Alex got back to me the next evening. (Thanks Again Alex!).
He offered up the following code exampel that should validate in xhtml:
<object width=”480″ height=”392″ type=”application/x-shockwave-flash”
data=”http://flash.revver.com/player/1.0/player.swf“>
<param name=”FlashVars”
value=”width=480&height=392&mediaId=49008&affiliateId=9237&s
kinURL=http://flash.revver.com/player/1.0/skins/RevverSkin_1-1.swf“/>
<param name=”movie” value=”http://flash.revver.com/player/1.0/player.swf“/>
<param name=”scale” value=”noScale”/>
<param name=”salign” value=”TL”/>
<param name=”quality” value=”best”/>
<param name=”wmode” value=”transparent”/>
<param name=”bgcolor” value=”#ffffff”/>
</object>
So I repalced my affiliate ID and my video ID for the ones provided in the example above.
Then, I put the code in a blank page in Dreamweaver and tested it. Worked fine.
I then attempted to put it in an article in WordPress (famous for its ease of use with videos – That’s a joke).
It didn’t work. I played around testing and retesting. Ultimately I noticed that the code lines above had been word wrapped and when I copied them from the email message into WordPress it viewed the word wrapped lines as new lines and thus the code was literally broken by word wrap. (note the code above and below may appear word wrapped also depending on this blog and on your monitor resolution or window size, trust me that I put the code in correctly and if you attempt this at home, double check to make sure the lines do not get a break in there somewhere!)
So I put the code back together again like this
<object width=”400″ height=”312″ type=”application/x-shockwave-flash” data=”http://flash.revver.com/player/1.0/player.swf”>
<param name=”FlashVars” value=”width=400&height=312&mediaId=252187&affiliateId=17630&skinURL=http://flash.revver.com/player/1.0/skins/RevverSkin_1-1.swf”/>
<param name=”movie” value=”http://flash.revver.com/player/1.0/player.swf”/>
<param name=”scale” value=”noScale”/>
<param name=”salign” value=”TL”/>
<param name=”quality” value=”best”/>
<param name=”wmode” value=”transparent”/>
<param name=”bgcolor” value=”#ffffff”/>
</object>
This worked like a charm, but I noticed in the published page a problem that I had noticed before.
One of those problems that you catch out of the corner of your eye, like a smurf or something but never track it down or bring it into conciousness until this time at least.
The brand new Revver full screen viewing option button was available when I viewed this video on Revver in ‘My Videos’ but it was not available on the video I had shared to my WordPress blog. So I sent Alex a follow up email, just in case he might have a parameter solution.
I did try <param name=”allowfullscreen” value=”true”/> but it didn’t work. I was just guessing . . .
EDIT
After a couple short iterations Asi from Revver (see comment below) helped to identify the gap in my flash code that was preventing the full screen button from showing and then later from working. Here is that code!
<object type=“application/x-shockwave-flash” data=“http://flash.revver.com/player/1.0/player.swf” height=“312″ width=“400″>
<param name=“FlashVars” value=“mediaId=252187&affiliateId=17630&allowFullScreen=true”></param>
<param name=“movie” value=“http://flash.revver.com/player/1.0/player.swf”></param>
<param name=“allowFullScreen” value=“true”></param>
<param name=“scale” value=“noScale”></param>
<param name=“salign” value=“TL”></param>
<param name=“quality” value=“best”></param>
<param name=“bgcolor” value=“#ffffff”></param>
</object>
Note you may not be able to view all the code here, however if you copy it you should be able to paste it into notepad. I’ll work on improving the ability to share code in a future post.
