Questions tagged [pandastream]

Powerful video encoding for the web. "Lightning fast, dedicated video encoding in the cloud. Upload once, play everywhere."

Pandastream provides powerful video encoding for the web.

"Lightning fast, dedicated video encoding in the cloud. Upload once, play everywhere."

22 questions
6
votes
1 answer

Column and Row manipulation Python Pandas

This is my first program in Pandas on my own and I am trying to perform some csv manipulations by column and rows. I have a transition repository of multiple files. The transition repository keep adding file into it. I am trying to dynamically read…
user3964336
5
votes
4 answers

Java Proxy Servlet for submitting files

I'm attempting to use Panda with my GWT application. I can upload videos directly to my panda server using POST MY_PANDA_SERVER/videos/MY_VIDEO_ID/upload However I would like hide my panda server behind my J2EE (glassfish) server. I would like to…
KevMo
  • 5,590
  • 13
  • 57
  • 70
3
votes
1 answer

Using only ffmpeg, is it possible to consume a source GIF image and output a video that is a set length > one loop through the input GIF?

Let's say I have an 8 frame animated GIF that is 2 seconds long. I would like to build a video file (codec not important at this point) that is 30 seconds long that consists of the source GIF repeating over and over. Is it possible to do this using…
Thomas Graft
  • 431
  • 3
  • 11
2
votes
1 answer

External transcoder with paperclip

We want to use an external transcoding service like PandaStream or Zencoder or Amazon Elastic Transcoder to transcode videos in our rails app. We are currently using paperclip for asset management (and our own, ffmpeg based processors). Does…
2
votes
0 answers

How to use resumable upload feature of pandastream

I am creating an app which requires resumable video upload. I intend to upload videos to pandastream. I already went to http://www.pandastream.com/docs/upload_api I started from creating upload session. -> POST /videos/upload.json Host:…
Arun KP
  • 111
  • 2
  • 7
2
votes
2 answers

Best Method for reading a YAML response in .NET?

Weve recently been trying to work on an application that uses pandastream to encode our videos, we are sending the videos successfully, and the response that we get back is in YAML, however the only tool that we can find (YAML for .NET) is not…
James Hall
  • 6,469
  • 6
  • 27
  • 28
1
vote
2 answers

Upload Video file using HttpClient

I'm building Java client that will automatically upload file from Java server to Panda Instance that I installed on my EC2 cloud using their AMI. I'm trying to use Apache HTTP Components to upload to Panda Server (Panda Stream). It works fine with…
Maksim
  • 16,635
  • 27
  • 94
  • 135
1
vote
1 answer

Get info about video that not finished encoding

Where does all meta data about video file comes from? Is it comes from original video or from encoded? I'm trying to write video duration into database, but i'm not sure if i can get this value during POST on my server
Avdept
  • 2,261
  • 2
  • 26
  • 48
1
vote
0 answers

panda error - file not getting uploaded

I am trying to embed a video in my app and am using the gem panda '1.6.0' for this. I followed the pandastream integrate with rails guide and have the following code: controllers: ------------- class BoothVideosController <…
1
vote
0 answers

Upload video to PandaStream in android

I want to upload LARGE video files to pandastream. I was able to upload small video by streaming. But when large videos are uploaded, got out of memory exception due to internal buffering. So Inorder to overcome this issue i tried the following two…
Elezabeth Mathew
  • 161
  • 2
  • 14
0
votes
1 answer

RSpec fails when matching two classes, even though the classes are _identical_

I have the following piece of code that checks if the returned video object is the same as the one I put in. The video object is a Panda Stream object, and referring to their homepage, the Panda::Video.find should return exactly the object I put in…
ekampp
  • 1,904
  • 18
  • 31
0
votes
1 answer

Panda gem and heroku

I've tried following the instructions here: http://devcenter.heroku.com/articles/pandastream However, when I open up the heroku console and run the command: video = Panda::Video.create(:source_url =>…
Richard Burton
  • 2,230
  • 6
  • 34
  • 49
0
votes
1 answer

Anyone know how to send this via ajax?

This is pandastream's pandauploader . Except I want it to be sent via AJAX. Anyone know how I would convert this? :javascript $("#returned_video_id").pandaUploader(#{Panda.signed_params('post', "/videos.json", :profiles =>…
Trip
  • 26,756
  • 46
  • 158
  • 277
0
votes
1 answer

Convert to high quality only if video is available in this quality

In a few words my problem would be described like this: Do not convert in hd if I upload video from old mobile. Right now when admin uploads a file, panda will convert it into all formats available in Encoding profiles tab, makes no sense to convert…
rmagnum2002
  • 11,341
  • 8
  • 49
  • 86
0
votes
1 answer

is there any way to skip authentication in custom_active admin actions

So, I have a collection_action in active admin that is used by PandaStream api to send back notifications when video is processed: collection_action :notify, :method => :post do # some irrelevant to the question code end rake routes…
1
2