Displaying 20 results from an estimated 100 matches similar to: "Need help in running swfdec to watch youtube video"
2008 Jan 25
0
How to load YouTube video swf in swfdec
Hi,
I am trying to load YouTube's flash video player in swfdec.
So I
* go to a youtube page with a video
* find out the embed tag which is the flash video player
* saved the swf file locally
* copy the flashvar of the embed tag
And I input to swfplay like this
./swfplay player2.swf
2008 Aug 26
8
[Bug 17307] New: sfwdec-mozilla plugin stops playing sounds
http://bugs.freedesktop.org/show_bug.cgi?id=17307
Summary: sfwdec-mozilla plugin stops playing sounds
Product: swfdec
Version: 0.6.0
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: plugin
AssignedTo: swfdec at lists.freedesktop.org
ReportedBy:
2006 Apr 25
3
ZFS quotas & zoned datasets
I''m seeing some unexpected and strange behaviour with respect to quotas
and zones.
Initially I set things up with no quota on the data set that as
delegated to the zone. Then as the local zone admin I created a new
child dataset and set a quota on that. Now the global zone admin
attempts to quota the delegated dataset, and it appears to work but....
global zone=pingpong
local
2008 Apr 12
2
[Bug 15471] New: segmentation fault while seeking in youtube.com
http://bugs.freedesktop.org/show_bug.cgi?id=15471
Summary: segmentation fault while seeking in youtube.com
Product: swfdec
Version: git
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: major
Priority: medium
Component: plugin
AssignedTo: swfdec at lists.freedesktop.org
2010 Apr 27
2
How to work out 3-way probabilities
Hello.
I have a quick question.
I try to use logit regression, to work out probabilities in the sport event.
I have work out probabilities for group of 2 players:
p1 - probability, what player1 will beat player2
p2 - probability, what player2 will beat player1
pt - tie probability, p1 <- 1 - p1 - p2;
Now i want to work out probabilities for group of 3 players, like:
pg1 - probability, what
2012 Feb 07
2
save method (create action) saves twice
Rails 3.1.3
I have changed a regular scaffold action a bit so that it can save using
ajax.
All I needed to do was adding ":remote => true" in
<div id="script_new">
<%= form_for script, :remote => true do |f| %> <!-- HERE!!! -->
<%= f.hidden_field :video_id %>
<%= f.text_field :text %>
<%= f.submit "save" %>
2007 Sep 26
1
Youtube broken by 89d295a94
Hello!
The current swfdec from git won't play videos on youtube. I had
bisected the change. 8fc53e76 ("merge the too get_variable functions")
is the last good revision. 89d295a94 ("implement
swfdec_action_get_movie_by_path() and use it for GetVariable") is
broken.
Broken revisions show "share" and "watch" on blinking white background
with two labels
2012 Feb 22
3
Parent id for find_or_create method
Rails 3.1.3
I have tables, Video and Script having association,
Video 1 --- n Script
So, every Script needs the parent id, in this case, video_id.
If I simply create a new Script instance, the view renders as follows.
<%= render :partial => "new_script", :locals => { :script =>
Script.new(:video_id => @video.id)} %>
which works fine. Now I would like to
2007 Dec 11
9
[Bug 13604] New: Assertion failure when seeking on youtube with pulseaudio backend.
http://bugs.freedesktop.org/show_bug.cgi?id=13604
Summary: Assertion failure when seeking on youtube with
pulseaudio backend.
Product: swfdec
Version: unspecified
Platform: x86-64 (AMD64)
URL: http://www.youtube.com
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority:
2008 May 21
6
this.initialize has no properties error in Prototype Code
Hi All,
I''m a super newbie with Prototype and am trying to implement my first
solution using it.
This is my code:
var span = ''totalViews'' + video_id;
var params = ''video_id='' + video_id;
Ajax.Response(''trackVideo.php'',
{
method: ''post'',
parameters: params,
onSuccess: function(transport)
{
2007 May 21
4
Spec''ing redirect with arbitrary parameters
I''ve got the following expectation:
response.should redirect_to(:action => "new", :video_id => "1",
:process_id => "2", :origin_id => "3")
that fails with this error message:
expected redirect to {:video_id=>"1", :process_id=>"2",
:origin_id=>"3", :action=>"new"}, got redirect to
2007 Nov 30
2
find_by_sql preformance problems when ordering data
Hi,
I am bumping into a small problem I was hoping someone could send me in
the right direction on.
I''m counting votes from a votes table to try to find the top ten videos.
The following works really well, until I try to order it. It would seem
that the order by is adding a 26 second delay, which surprised me since
it was all done in sql. I revised the process to sort and publish on
2007 Sep 09
1
can't play youtube videos with latest git
Hi,
I can't play youtube videos with latest git but it worked with 0.5.2.
Below you can find firefox stderr.
BTW, when playing video with 0.5.2 i see it very slow but a very high
cpu % for the Xorg process. My machine is an amd xp 2600 +, radeon 9250
and 1gb of ram. Could that be related to the x.org radeon driver? I've
read the FAQ on the site and i hope my machine has enough horsepower
2006 Apr 07
5
Confusion about has_many / belongs_to ...
I have a table called players and its model Player, and I have a table
called games and its model Game.
In the games table I have:
player1_id int(11)
player2_id int(11)
I want the tables to be associated so that I can access the player
objects using table.player1 and table.player2 rather than having to
lookup the objects based on the ids.
I am not sure how to go about this but I suspect I
2007 Feb 21
1
Rendering all the elements when calling Array#to_xml
When I call to_xml on an array, I want it to get the XML for all the
elements in it. I''ve defined to_xml in my class.
>> r.to_xml
=> "<video><id>1</id><views>2</views></video>"
>> a = [r]
=> [#<StatisticsReport:0x3259f38 @video_id=1, @views=2>]
>> a.to_xml
=> "<?xml version=\"1.0\"
2007 Feb 23
4
How can I spec this? The method gets passed a block...
I''m using Jim Weirich''s Builder library. The code I want to spec is
xml.video do
xml.id @video_id
xml.views @views
xml.date(@date.to_s) if @date
end
I''d like to mock it, rather than asserting that the XML is the right
string. I can do one spec:
specify "should create a video tag" do
@mock_builder.should_receive(:video)
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
2011 Jun 01
0
Memory management
I am trying to run a very large Bradley-Terry model using the BradleyTerry2 package. (There are 288 "players" in the BT model).
My problem is that I ran the model below successfully.
WLMat is a win-loss matrix that is 288 by 288
WLdf<-countsToBinomial(WLMat)
mod1<-BTm(cbind(win1,win2),player1,player2,~player,id="player",data=WLdf)
Then I needed to run the same model
2002 Mar 20
5
inverted axis
Hello everybody!
Spse I have the following
X <- seq(1:100) #(a dim(100) sequence of integers 1:100 representing
the possible actions of player 1 and player2 in a game)
BR2X<- br2(X) #(a dim(100) sequence of points on range (1,100)
representing the best response function of player 2 to player 1:s
actions)
BR1X<- br1(X) #(a dim(100) sequence of points on range (1,100)
2007 Nov 12
0
3 commits - libswfdec/swfdec_player.c test/trace
libswfdec/swfdec_player.c | 18 +--
test/trace/loadvars-decode-5.swf |binary
test/trace/loadvars-decode-5.swf.trace | 182 +++++++++++++++++++++++++++++++++
test/trace/loadvars-decode-6.swf |binary
test/trace/loadvars-decode-6.swf.trace | 182 +++++++++++++++++++++++++++++++++
test/trace/loadvars-decode-7.swf |binary
test/trace/loadvars-decode-7.swf.trace |