Closed (fixed)
Project:
Media: BlipTV
Version:
6.x-1.0-alpha1
Component:
Miscellaneous
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Oct 2010 at 16:50 UTC
Updated:
3 Jan 2014 at 02:04 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
mmlr38 commentedUpdate: It seems like the parameter needed to play the file isn't being captured correctly. Below is the HTML output from a non-working page. Notice that there is no string after the http://blip.tv/play/:
Here's what a working page looks like:
Any idea why the string isn't being saved off correctly?
Comment #2
jodym commentedI had the same problem in the bliptv.inc file
line 265 (for me) $embed_code = $item['data']['flv']['embed_code']['0']; (change flv to mp4)
and I added %2Em4v to $embed_code . '" />
just after the single quoteComment #3
agentrickardProper patch.
Comment #4
edumdq commentedThanks for the patch agentrickard! After applying it I had to do some manual patching because the website of my client artefisico.com.ar has a lot of weekly shows and with the patch only the newest one showed (the only one since blip.tv made the change).
Anyway the patch changes media_bliptv/providers/emvideo/bliptv.inc modifying line 265: $embed_code = $item['data']['flv']['embed_code']['0'];
for: $embed_code = $item['data']['m4v']['embed_code']['0'];
But for the site to display both new and old shows I replaced the line with this one:
if ($post_id < 4313921){
$embed_code = $item['data']['flv']['embed_code']['0'];}
else{
$embed_code = $item['data']['m4v']['embed_code']['0'];}
using the $post_id for their latest show.
Hope this helps.
Eduardo
www.eduardoamaral.com.ar
Comment #5
lizmestres commentedThe change suggested in comment #4 worked for both old and new blip videos! Thanks so much.
Comment #6
agentrickardYes, I had to do that, too, when I couldn't update some feeds. Should have a patch somewhere....
Comment #7
agentrickardHere it is
Comment #8
aaron commentedthanks everyone! got that committed, will roll a new release shortly.