/[Frey]/trunk/lib/Frey/Web/FLVPlayer.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/Web/FLVPlayer.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/lib/Frey/Web/Flowplayer.pm revision 814 by dpavlin, Thu Dec 11 21:07:52 2008 UTC trunk/lib/Frey/Web/FLVPlayer.pm revision 846 by dpavlin, Mon Dec 15 18:42:48 2008 UTC
# Line 1  Line 1 
1  package Frey::Web::Flowplayer;  package Frey::Web::FLVPlayer;
2  use Moose;  use Moose;
3    
4  =head1 SEE ALSO  =head1 SEE ALSO
5    
6  L<http://flowplayer.org/documentation/installation.html>  L<http://flv-player.net/>
7    
8  =cut  =cut
9    
10  extends 'Frey';  extends 'Frey';
11  with 'Frey::Web';  with 'Frey::Web';
12  #with 'Frey::Storage';  #with 'Frey::Storage';
13    with 'Frey::File::FLV';
14    
15  has flv => (  has path => (
16          is => 'rw',          is => 'rw',
17          isa => 'Str',          isa => 'Str',
18          required => 1,          required => 1,
19          default => 'var/flv/strix-2005-2008-codeswarm.flv',          default => 'var/flv/codeswarm.flv',
20  );  );
21    
22  has flowplayer_js => (  has player_swf => (
23          is => 'rw',          is => 'rw',
24          isa => 'Str',          isa => 'Str',
25          required => 1,          required => 1,
26          default => 'http://static.flowplayer.org/js/flowplayer-3.0.1.min.js',          default => 'http://flv-player.net/medias/player_flv_maxi.swf',
 );  
   
 has flowplayer_swf => (  
         is => 'rw',  
         isa => 'Str',  
         required => 1,  
         default => 'http://static.flowplayer.org/swf/flowplayer-3.0.1.swf',  
27  );  );
28    
29  sub as_markup {  sub as_markup {
30          my ($self) = @_;          my ($self) = @_;
31    
32          my $flv = $self->flv;          my $path = $self->path;
33          die "can't find $flv" unless -e $flv;          die "can't find $path" unless -e $path;
34    
35            my $url = "http://localhost:3000/$path"; # FIXME
36    
37            my $swf = $self->player_swf;
38    
39          $flv = "http://localhost:3000/$flv";          my %info = $self->flv_info;
40            warn "# info ", $self->dump( \%info );
41    
42          $self->add_js( $self->flowplayer_js );          my $width  = $info{meta_width};
43          my $swf = $self->flowplayer_swf;          my $height = $info{meta_height};
44    
45          qq|          qq|
46  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"                  <object type="application/x-shockwave-flash" data="$swf" width="$width" height="$height">
47      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">                  <param name="movie" value="$swf" />
48                    <param name="FlashVars" value="flv=$url" />
49  <!--                    </object>
    Setup player with standard HTML syntax  
       * movie file is specified in "href" attribute    
       * player dimensions are defined with CSS    
 -->  
 <a    
     href="$flv"  
     style="display:block;width:425px;height:300px;"    
     id="player">  
 </a>  
   
 <!-- this script block will install Flowplayer inside previous anchor tag -->  
 <script language="JavaScript">  
     flowplayer("player", "$swf");  
 </script>  
50          |;          |;
51    
52  }  }

Legend:
Removed from v.814  
changed lines
  Added in v.846

  ViewVC Help
Powered by ViewVC 1.1.26