I'm using the Streamio gem for Rails to transcode a video file to .webm format. I'm able to display the progress of the transcoding on the console using:
movie.transcode("public/uploads/#{current_user.id}/#{@userfile.name}.webm") { |progress| puts progress }
It's showing the progress on the console like this:
My question is, how do I display this on the browser? Where the user can actually see the progress of the transcoding?