Displaying 20 results from an estimated 10000 matches similar to: "Stream videos and secure the files"
2009 Oct 22
4
AstriCon videos: a question of method
I'm doing some quick research on how to get our videos from AstriCon
available in a "reasonable" format that allows easy viewing, reduces
our bandwidth costs, and allows good tracking for who/where/what is
viewing the videos.
YouTube seems to have a very nice set of tools and statistics
collection methods, and might be perfect EXCEPT.... Their main
limitation right now
2011 Sep 27
1
Rails 3.1 assets path for video player Flash script 'player.swf'
I was using a Flash video player within a previous Rails version app
Moving to Rails 3.1.0 , I dob''t know where I should put the script ...
I tried to move it into an app asset sub-directory
assets
- jwplayer
- - player.swf
but this raises an error
"NetworkError: 406 Not Acceptable - http://localhost:3000/assets/jwplayer/player.swf"
player.swf
the flash script is given as a
2009 Jun 24
3
streaming theora in flash
Hi,
I managed to get my own FLV videos working over the web:
http://certik.github.com/record/
it plays in the opensource flash player (flowplayer), but I have to
convert theora to FLV (you can use the script in the package above).
My question is, does anyone know if it's possible to get theora itself
working? I know firefox3.5 will be able to do it, but I am afraid that
will be the only
2010 Mar 18
0
differences between relative_url using Rails with Prototype or JQuery
My web app is deployed with Passenger in a sub-uri, http://www.mydomain.com/vacademy/
and I am displaying a player in a page
the swf is located in ../public/dist/flowplayer-3.1.5.swf
Using Prototype library I wrote a script :
<script>
$f("player", "./dist/flowplayer-3.1.5.swf", {
....
and I don''t have any problem to get the player installed from
2012 Jan 03
1
Rails 3.1 assets pipeline issue in production
I am running a jwplayer with an open ads server plugin .. it''s running
fine in development, ads are served , but not in production on the
remote server... I guess it''s related to the plugin file access ...
in development , I wrote in the script :
''plugins'': {
"/assets/jwplayer/ova-jw.swf": {
"overlays": {"regions": [{
2010 Mar 11
1
bad url in js script
When running in development env, I don''t have this problem, only in
production...
I have a view in which a js script display a FlowPlayer video player
(+ plugins)...
the flash files are located in the /public/dist folder, ant the
script calls them like that :
<script>
$f("player", "/dist/flowplayer-3.1.5.swf", {
plugins: {
rtmp: {
2007 Dec 11
0
[Bug 11164] FlowPlayer doesn't work
http://bugs.freedesktop.org/show_bug.cgi?id=11164
pekka.lampila at iki.fi changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
Summary|Work together the FlowPlayer|FlowPlayer doesn't work
|project
2020 Jul 02
0
Integration of VAST Plugin
2020 Jul 02
2
Integration of VAST Plugin
As far as I know, the most common practice is handling the ads insertment
at the client side. eg. at the player level.
I know that videojs got a vast plugin:
https://github.com/googleads/videojs-ima
as well as JWPlayer:
https://developer.jwplayer.com/jwplayer/docs/jw8-advertising
However this method has one drawback, Adblock addons will target most VAST
requests and disable the advertisements..
2008 Apr 09
5
[Bug 15431] New: [NSFW] pichunter streams/tv do not work
http://bugs.freedesktop.org/show_bug.cgi?id=15431
Summary: [NSFW] pichunter streams/tv do not work
Product: swfdec
Version: unspecified
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: plugin
AssignedTo: swfdec at lists.freedesktop.org
2010 Apr 29
2
send_data => invalid byte sequence in US-ASCII
I''m trying to display a generated .png plot via send_data(), but it
results in a server error "invalid byte sequence in US-ASCII" error.
I''m pretty sure this means that I need to specify the encoding
somewhere, but I haven''t been able to figure out where or how to do so.
Some particulars:
I''m running gnuplot through a pipe to generate a plot in .png
2012 Mar 13
1
send_data always sends xml file?
I''m trying to use send_data to send a simple text file.
Every reference I can find says I can supply a MIME type with the
":type" option and that will determine the kind of file I get on the
machine that downloads the file I''m sending. Instead I ALWAYS get an
XML file.
here''s the code snippet:
File.open(@temp_download_file_path, ''r'') do
2010 Dec 22
0
image_tag and send_data
i''m storing images in database.
i have this action in controller:
def image
begin
item = StoredItem.find(:first, :conditions => {:id =>
params[:id]})
rescue
return
end
return if item.nil?
if item.image_binary.nil?
render :nothing => true
else
send_data(item.image_binary, :type => item.image_datatype,
:disposition =>
2010 Nov 03
2
send_file but not send_data?
So this is the original code I used, and it worked
send_file ''vendor/sprites/not-found.png'', {:filename =>
"sprite-not-found.png", :type => "image/png", :disposition => "inline"}
Now I switched it to this (going to be adding imageMagick)
send_data File.read(''vendor/sprites/not-found.png''), {:filename =>
2008 Apr 15
4
trouble streaming images with send_data
Hi
I''m doing some server-side graphics with Java2D and I''m trying to
stream the resulting image to the browser using send_data. When I try
to view the image that I streamed, the browser just shows the URL in
the window as a very small image (about .4 kb) when I am using jpeg
format. For png, it tells me that the image has errors and can''t load
it.
Here''s what
2006 Nov 04
0
send_data from disk
Hi, I''m trying to use send_data to stream a file that is stored on my disk
(not as a blob in the database.)
So, this is what I''ve tried:
send_data File.new(filename).read
But, the file doesn''t download. I think send_data expects something other
than a String (which is returned by File.read.) Anyone know how to get this
working?
The reason this is being done is to
2006 Jul 16
0
send_file with stream enabled
Has anyone managed to use send_file with :stream => true?
I''m currently still developing using Rails 1.1.2 on windows xp so might
be OS problem. But google results show this also happen on linux hosts.
I think using send_file with :stream => false is pointless. Since
send_data does exactly the same thing. Or am I mistaken?
Thanks.
--
Posted via http://www.ruby-forum.com/.
2009 Nov 08
2
send_data with jpeg not working
I''m a newbie having trouble using send_data to send a jpeg file to the
browser for display in an html img tag. This is the relevant code
from my controller (photos_controller.rb):
def retrieve
@photo = Photo.find(params[:id])
send_data File.read(@photo.abs_img_path), :type => "image/
jpeg", :disposition => "inline"
end
def download
@photo =
2008 Feb 22
0
Ariel te envió una invitación para que seas su amigo en Tagged...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Ariel has Tagged you! :)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
2008 Oct 16
3
defining a function using strings
Hi All,
I need to evaluate a series expansion using Legendre polynomials.
Using the 'orthopolinom' package I can get a list of the first n
Legendre polynomials as character strings.
> library(orthopolynom)
> l<-legendre.polynomials(4)
> l
[[1]]
1
[[2]]
x
[[3]]
-0.5 + 1.5*x^2
[[4]]
-1.5*x + 2.5*x^3
[[5]]
0.375 - 3.75*x^2 + 4.375*x^4
But I can't figure out how to