Posts that Brooks Lyrette is monitoring

Subscribe to Posts that Brooks Lyrette is monitoring 20 posts found

Nov 26, 2008
Avatar cromagn1 3 posts

Topic: Status Code 101 on every video

tks you for the fast fix.

 
Nov 26, 2008
Avatar Bruno Celeste 374 posts

Topic: Status Code 101 on every video

This is fixed, sorry for the inconvenience.

 
Nov 26, 2008
Avatar cromagn1 3 posts

Topic: Status Code 101 on every video

Also on my video i got the same effect. 101 error code, but the audio format is correct

 
Nov 25, 2008
Avatar Screen 5 Media 1 post

Topic: Status Code 101 on every video

i’ve been trying different videos for about an hour now and every one i try to upload gets rejected with code 101. i even tried videos that have already gone through the hey watch transcoding process. i even pulled the last video that got transcoded and tried to reupload it. nothing. every time it’s 101.

 
Nov 3, 2008
Avatar Bruno Celeste 374 posts

Topic: HTTP Codes changed?

Back to status 201. All is fixed now. Sorry for the inconvenience.

 
Nov 3, 2008
Avatar Bruno Celeste 374 posts

Topic: HTTP Codes changed?

Hi,

We’ve made the change 1 hour ago to avoid a timeout error which appeared this week end. We’re very sorry for the inconvenience.

You can be notified about updates by following us on twitter http://twitter.com/particles

 
Aug 26, 2008
Avatar Bruno Celeste 374 posts

Topic: Videos taking a long time to begin converting

We’re exceptionally under heavy load. It should be back to normal in a few minutes. Sorry for the inconvenience.

 
Aug 15, 2008
Avatar Adam Sherman 10 posts

Topic: No thumbnail

Thanks Bruno. I will post here if we see more of the same problem.

A.

 
Aug 7, 2008
Avatar Bruno Celeste 374 posts

Topic: No thumbnail

We’ve just fixed this annoying issue.

The problem is that amazon S3 is pretty slow, so if you ask for the thumbnail at the end of the video (say 30min), you have a good chance to have the no thumbnail. We have a timeout of 15sec to avoid a complete outtage of the system.

We’re aware that the solution to generate thumbnails is not reliable and we’ll work on that for the next release. It will be probably a background process which will send you the image to your FTP / S3, or ping you when done so you can download it. It will be more scalable and efficient.

 
Aug 6, 2008
Avatar mirzu 1 post

Topic: No thumbnail

I just recieved a no thumbnail image instead of the thumbnail for the first time.

Is this something that I should plan on happening when Heywatch is busy? Is this an issue that will be resolved?

Is there any way to tell from the listener that this has occurred? I’d like to be able to set up my code to request another thumbnail. . .

 
Jul 31, 2008
Avatar Adam Sherman 10 posts

Topic: No thumbnail

We are also seeing some occasions where we get back an empty document for some of our requests. e.g. we request 9 different thumbnails for the same video (to give our users choice) and get back 7 of the 9, with the last two being an empty document. Is this the same issue?

Thanks,

A.

 
Jul 25, 2008
Avatar Bruno Celeste 374 posts

Topic: No thumbnail

Yes there is a problem with S3. We’ll work on that soon.

We use the couple EC2/S3 if we get a huge amount of encode at once.

 
Jul 25, 2008
Avatar Adam Sherman 10 posts

Topic: No thumbnail

Does this mean that if we are currently experience the “No Thumbnail” issue, we are shit out of luck?

What determines if a video is stored on S3 or not?

Thank you,

A.

 
Jan 30, 2008
Avatar Bruno Celeste 374 posts

Topic: No thumbnail

Unfortunately, it doesn’t depend on us. Amazon S3 is too strict and doesn’t accept requests from ffmpeg… Can you resize the image using the flash vars? Or maybe you can use Rmagick to resize the thumb?

If I find something, I’ll let you know.

 
Jan 30, 2008
Avatar ngw 15 posts

Topic: No thumbnail

Hi Bruno, thanks for your answer. When will you fix the issue ? Thumbnails are too small for us (http://www.zooppa.com:8060/ads/19_meetic-it/video/841, remove the port number in a few hours …).

 
Jan 30, 2008
Avatar Bruno Celeste 374 posts

Topic: No thumbnail

In fact I’ve just figured out the problem. Amazon S3 returns an error when ffmpeg requests the file to generate a thumbnail. Note that not all the encoded videos are hosted on S3, this is why you got a default thumb instead of the good one not every time.

The only solution I can see right now is to keep the original thumbnail we generated (no resizing). If you kept the encoded video id, you can request each of the encoded videos like this:

GET http://heywatch.com/encoded_video/ID.jpg

You’ll be redirected to the good location of the image.

 
Jan 30, 2008
Avatar ngw 15 posts

Topic: No thumbnail

I would add that it’s pretty urgent, Heywatch! service has been fantastic till now, but this is a huge downside. I can also provide our staging server access if you need, but we need a solution pretty fast.

 
Jan 30, 2008
Avatar ngw 15 posts

Topic: No thumbnail

Well, it seems like first 100 or so video I uploaded thumbnails are generated, after some are generated and some not … I didn’t read of any bandwith/resources limitation with heywatch, if I knew …

 
Jan 30, 2008
Avatar ngw 15 posts

Topic: No thumbnail

I migrated all our videos to Heywatch but I have a huge issue. 80% of videos are without a thumbnail, they have a white image saying “no thumbnail”. My code is:

def get_image( encoded_id )
  encoded_video = HeyWatch::EncodedVideo.find( encoded_id )
  thumbnail_source = encoded_video.thumbnail :start => 5, :width => 450, :height => 338
  temp = Tempfile.new( encoded_video.id )
  File.open( temp.path, 'wb' ) { |f| f.write( thumbnail_source ) }
  image = open( temp.path, 'rb' )
end

Don’t know what’s wrong here. Maybe it’s because I encoded more than 500 videos and the machine didn’t have enough resources ? It seems like it stopped after a while …

 
Nov 6, 2007
Avatar Bruno Celeste 374 posts

Topic: Downloading a file with Basic auth

You must authenticate the same way as you do usually. You can see an example in PHP here http://wiki.heywatch.com/Download+an+encoded+video+in+PHP