Re: [Freevo-devel] runtime-pre5-test1 issues

2003-06-11 Thread Rob Shortt
Wan Tat Chee wrote:
Hi Rob,

Just managed to d/l the runtime:

1. freevo_python is missing in apps? (otherwise, I get glibc errors
   running the system python app)
Woops!  Thats what I get from building that tarball by hand while tired. 
 When I tested it I didn't notice the problem because freevo_python is 
the same as the one found on my system anyhow, lol.  When I update the 
package I will send you a link to that file if you don't want to wit 
another 4 hours downloading the package again.

2. Can you include the VERSION file in the runtime? It's useful as a 
   reference to check which runtime is actually used if problems arise.
Sure, no prob.

-Rob



---
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] Re: [Freevo-users] runtime-pre5-test1 availableand call for testers

2003-06-11 Thread Rob Shortt
Aubin Paul wrote:
Rob,

Can you perhaps add tvtime to the runtime, it only requires xlibs, and
a dynamic binary is about 350k. I just think that for the many people
who have had audiosync problems, it's a much nicer alternative. Plus,
after you and Dischi try it, you may be convinced to switch from
mplayer to tvtime.
It has a nice OSD, great quality and perfect audio sync.

(You can also link it to directfb if you want) 
Oh yeah, I kinda forgot about this one.  I will add it.  Isn't tvtime 
for deinterlaced output though?

-Rob



---
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] Re: [Freevo-users] runtime-pre5-test1 available and call for testers

2003-06-11 Thread Aubin Paul
On Wed, Jun 11, 2003 at 10:36:36AM -0300, Rob Shortt wrote:
 Oh yeah, I kinda forgot about this one.  I will add it.  Isn't tvtime 
 for deinterlaced output though?

Yeah, it's a little backwards to use it the way I'm using it,
logically, but you can turn off deinterlacing if you'd like, and it's
still pretty nice on a TV.

Aubin


---
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel


[Freevo-wikilog] [Freevo Wiki] Update of DocumentationPage

2003-06-11 Thread freevo-wikilog
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Freevo Wiki for change 
notification.

The following page has been changed by 12.159.193.4:
http://freevo.sourceforge.net/cgi-bin/moin.cgi/DocumentationPage

The comment on the change is:
trailing comma does no harm.  alternative TV_CHANNELS output

--
@@ -101,10 +101,14 @@
 ln -s `date +'$HOME/freevo/xmltv/listings_%d%m%Y.xml'` /tmp/TV.xml
 }}} 
 
-If you're too lazy to edit freevo_config.py manually, and you have a /tmp/TV.xml file 
downloaded, here's a small shell script which will generate the TV channels for you. 
You can then change the order or make corrections to the naming. To use it as is, 
don't forget to remove the trailing comma.
+If you're too lazy to edit freevo_config.py manually, and you have a /tmp/TV.xml file 
downloaded, here's a small shell script which will generate the TV channels for you. 
You can then change the order or make corrections to the naming.
 
  {{{
-# cat /tmp/TV.xml | grep id= | awk '{FS=\; a=a+1; print (\x27 $2 \x27  
\x27 $2 \x27, \x27 a \x27),}'
+# cat /tmp/TV.xml | grep id= | awk '{FS=\; a=a+1; print (\x27 $2 \x27,  
\x27 $2 \x27, \x27 a \x27),}'
+}}}
+or, alternatively, to create a sorted list:
+ {{{
+# grep channel id= /tmp/TV.xml | sed -e 's#^.*channel id=\([^]\+\)#\1#g' | 
sort -n | awk '{a=a+1; printf((\x27%s\x27, \x27%s\x27, \x27%s\x27),\n, $0, $0, a)}'
 }}} 
 
 


---
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
___
Freevo-wikilog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-wikilog


[Freevo-cvslog] freevo/skins/main1 tvlisting_area.py,1.2,1.3

2003-06-11 Thread gsbarbieri
Update of /cvsroot/freevo/freevo/skins/main1
In directory sc8-pr-cvs1:/tmp/cvs-serv27159/skins/main1

Modified Files:
tvlisting_area.py 
Log Message:
Fixed the TV Guide.
Added the date to the Guide, it's at left-top corner of the listing


Index: tvlisting_area.py
===
RCS file: /cvsroot/freevo/freevo/skins/main1/tvlisting_area.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tvlisting_area.py   24 Apr 2003 19:57:53 -  1.2
--- tvlisting_area.py   12 Jun 2003 00:11:39 -  1.3
***
*** 10,13 
--- 10,17 
  # ---
  # $Log$
+ # Revision 1.3  2003/06/12 00:11:39  gsbarbieri
+ # Fixed the TV Guide.
+ # Added the date to the Guide, it's at left-top corner of the listing
+ #
  # Revision 1.2  2003/04/24 19:57:53  dischi
  # comment cleanup for 1.3.2-pre4
***
*** 43,47 
  import time
  import config
! 
  from area import Skin_Area, Geometry
  from skin_utils import *
--- 47,51 
  import time
  import config
! import math
  from area import Skin_Area, Geometry
  from skin_utils import *
***
*** 177,197 
  rightarrow_size = (rightarrow.get_width(), rightarrow.get_height())
  
- x_contents = content.x + label_width + content.spacing
- w_contents = content.width - label_width - content.spacing
  
! for i in range(n_cols):
! x0 = int(x_contents + (float(w_contents) / n_cols) * i)
! x1 = int(x_contents + (float(w_contents) / n_cols) * (i+1))
! ty0 = content.y
  
! ig = Geometry(0, 0, x1-x0+1, head_h)
  if head_val.rectangle:
! ig, r = self.fit_item_in_rectangle(head_val.rectangle, x1-x0+1, 
head_h)
! self.drawroundbox(x0+r.x, ty0+r.y, r.width, r.height, r)
! 
! 
self.write_text(time.strftime(%H:%M,time.localtime(to_listing[0][i+1])),
! head_font, content, x=x0+ig.x,
! y=ty0+ig.y, width=ig.width, height=-1,
! align_v='center', align_h = head_val.align)
  
  # define start and stop time
--- 181,237 
  rightarrow_size = (rightarrow.get_width(), rightarrow.get_height())
  
  
! x_contents = content.x + content.spacing
! y_contents = content.y + content.spacing
! 
! w_contents = content.width  - 2 * content.spacing
! h_contents = content.height - 2 * content.spacing
  
! # Print the Date of the current list page
! dateformat = config.TV_DATEFORMAT
! if not dateformat:
! dateformat = '%e-%b'
! 
! r = Geometry( 0, 0, label_width, font_h )
! if label_val.rectangle:
! r = self.get_item_rectangle( label_val.rectangle, label_width, head_h )[ 
2 ]
! pad_x = 0
! pad_y = 0
! if r.x  0: pad_x = -1 * r.x
! if r.y  0: pad_y = -1 * r.y
! self.drawroundbox( x_contents, y_contents,
!r.width+1, head_h+1, r )
! self.write_text( time.strftime( dateformat, time.localtime( to_listing[ 0 ][ 
1 ] ) ),
!  head_font, content,
!  x=( x_contents + pad_x ), y=( y_contents + pad_y ),
!  width=( r.width - 2 * pad_x ), height=-1,
!  align_v='center', align_h=head_val.align )
! 
! x_contents += r.width
! y_contents += r.height
! w_contents -= r.width
! h_contents -= r.width
! 
! # 1 sec = x pixels
! prop_1sec = float(w_contents) / float(n_cols * col_time * 60)
! 
! # Print the time at the table's top
! x0 = x_contents
! col_size = prop_1sec * 1800 # 30 minutes
! ty0 = y_contents - r.height
! for i in range( n_cols ):
! ig = Geometry( 0, 0, col_size, head_h )
  if head_val.rectangle:
! ig, r = self.fit_item_in_rectangle( head_val.rectangle, col_size, 
head_h )
! 
! self.drawroundbox( math.floor(x0), ty0,
!math.floor( col_size + x0 ) - math.floor( x0 ) + 1, 
head_h + 1, r )
! 
! self.write_text( time.strftime( %H:%M, time.localtime( to_listing[ 0 
][ i + 1 ] ) ),
!  head_font, content,
!  x=( x0 + ig.x ), y=( ty0 + ig.y ),
!  width=ig.width, height=-1,
!  align_v='center', align_h=head_val.align)
! x0 += col_size
  
  # define start and stop time
***
*** 201,210 
  stop_time += (col_time*60)
  
- # 1 sec = x pixels
- prop_1sec = float(w_contents) / float(n_cols * col_time * 60)
- 
  # selected program:
  

[Freevo-devel] Re: Mplayer patch for new runtime

2003-06-11 Thread Wan Tat Chee
Hi Rob,

How's your system recovery going?

I tried the new runtime-pre5-test1 mplayer and found that it didn't do
anything with the forceaudio option for tv parameters, needed to get my
v4l2 card working properly with mplayer. The mplayer startup message still
says Audio: no sound. I'm not sure if 'forceaudio' is supposed to
provide some other display message?

(BTW, the new mplayer now requires input URL as tv:// instead of passing
'on' as part of the tv parameters -- I hope that freevo mplayer script was
modified to reflect this).

Here's my mplayer call parameters (in case I forgot something):
./apps/mplayer/mplayer -fps 30 -tv \
driver:v4l:forceaudio:forcechan=1:amode=0:adevice=/dev/dsp:\
device=/dev/video0:channel=E5:norm=pal:chanlist=europe-west:\
width=720:height=576 -ao alsa9 -vo fbdev tv://

The patch which is supposed to allow v4l2 cards to function with mplayer
is below. Can you please verify that it's already part of the mplayer cvs
snapshot?


Wan Tat Chee (Lecturer)
School of Computer Science, Univ. Science Malaysia,
11800 Minden, Penang, Malaysia.   Rm.625 Ofc Ph: +604 653-3888 x 3617
NRG Lab Admin: +604 659-4757   Rm.601-E Ofc Ph: +604 653-4396
Internet: [EMAIL PROTECTED]Web: http://nrg.cs.usm.my/~tcwan
GPG Key : http://nrg.cs.usm.my/~tcwan/tcw_gpg-20030322.asc
F'print : DCF2 B9B2 FA4D 1208 AD59  14CA 9A8F F54D B2C4 63C7

-- Forwarded message --
Date: Wed, 28 May 2003 11:21:33 +0800 (SGT)
From: Wan Tat Chee [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Mplayer patch for new runtime

Rob,

Since you'll be building a new runtime, can you please make sure that the
following mplayer patch has been applied (it's supposed to be in the
latest mplayer CVS). This is to fix the issue of no audio unmuting during
TV playback on v4l2-only devices (e.g., saa7134 TV cards).

To use this feature, the tv parameters have to include 'forceaudio'. I
don't think the tvcmd tv parameters in src/tv/mplayer.py can be
overridden via local_config.py yet.

Also, the tvcmd for vcr mode hardcodes chanlist=us-cable. Can it use
the same format as for TV viewing where chanlist is a variable which
takes its value from freevo.conf?

Thanks.
T.C.

--- ../MPlayer-0.90/libmpdemux/tvi_v4l.cSun Feb  2 03:36:35 2003
+++ libmpdemux/tvi_v4l.cTue Apr 29 04:23:47 2003
@@ -815,6 +815,7 @@
return(TVI_CONTROL_FALSE);
}
case TVI_CONTROL_IS_AUDIO:
+   if (tv_param_force_audio) return(TVI_CONTROL_TRUE);
if (priv-channels[priv-act_channel].flags  VIDEO_VC_AUDIO)
{
return(TVI_CONTROL_TRUE);



Wan Tat Chee (Lecturer)
School of Computer Science, Univ. Science Malaysia,
11800 Minden, Penang, Malaysia.   Rm.625 Ofc Ph: +604 653-3888 x 3617
NRG Lab Admin: +604 659-4757   Rm.601-E Ofc Ph: +604 653-4396
Internet: [EMAIL PROTECTED]Web: http://nrg.cs.usm.my/~tcwan
GPG Key : http://nrg.cs.usm.my/~tcwan/tcw_gpg-20030322.asc
F'print : DCF2 B9B2 FA4D 1208 AD59  14CA 9A8F F54D B2C4 63C7





---
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel


[Freevo-cvslog] website content_links.html,1.7,1.8

2003-06-11 Thread outlyer
Update of /cvsroot/freevo/website
In directory sc8-pr-cvs1:/tmp/cvs-serv23597

Modified Files:
content_links.html 
Log Message:
Added a link to freepia


Index: content_links.html
===
RCS file: /cvsroot/freevo/website/content_links.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** content_links.html  30 May 2003 05:03:58 -  1.7
--- content_links.html  12 Jun 2003 03:10:47 -  1.8
***
*** 63,67 
 freevo. 
/li
! 
  /ul
  
--- 63,71 
 freevo. 
/li
!   br
!   lia href=http://freepia.mooo.com/;Freepa/a
!  A small GNU/Linux distribution designed to run on VIA EPIA-M mainboards. 
!  It currently only runs on the M-9000. 
!   /li
  /ul
  




---
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
___
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog


Re: [Freevo-devel] Re: Mplayer patch for new runtime

2003-06-11 Thread Rob Shortt
Wan Tat Chee wrote:
Hi Rob,
Hi. :)

How's your system recovery going?
Almost done... I am so tired.  Everything is almost setup again but I am 
having a stupid audio problem.  My audio drivers (trident, ac97) load 
fine, I get a device, adio apps run fine like there is nothing wrong but 
I get no sound!!  There are no muted channels.  I tried alsa but things 
kept segfaulting.  Any suggestions?

I tried the new runtime-pre5-test1 mplayer and found that it didn't do
anything with the forceaudio option for tv parameters, needed to get my
v4l2 card working properly with mplayer. The mplayer startup message still
says Audio: no sound. I'm not sure if 'forceaudio' is supposed to
provide some other display message?
BTW, I added freevo_python to that runtime tarball but I am going to add 
tvtime before uploading it to the website again.

(BTW, the new mplayer now requires input URL as tv:// instead of passing
'on' as part of the tv parameters -- I hope that freevo mplayer script was
modified to reflect this).
I'll have to check that.

Here's my mplayer call parameters (in case I forgot something):
./apps/mplayer/mplayer -fps 30 -tv \
driver:v4l:forceaudio:forcechan=1:amode=0:adevice=/dev/dsp:\
device=/dev/video0:channel=E5:norm=pal:chanlist=europe-west:\
width=720:height=576 -ao alsa9 -vo fbdev tv://
The patch which is supposed to allow v4l2 cards to function with mplayer
is below. Can you please verify that it's already part of the mplayer cvs
snapshot?
I'll check that too.  Thanks for the heads-up.

-Rob


Wan Tat Chee (Lecturer)
School of Computer Science, Univ. Science Malaysia,
11800 Minden, Penang, Malaysia.   Rm.625 Ofc Ph: +604 653-3888 x 3617
NRG Lab Admin: +604 659-4757   Rm.601-E Ofc Ph: +604 653-4396
Internet: [EMAIL PROTECTED]Web: http://nrg.cs.usm.my/~tcwan
GPG Key : http://nrg.cs.usm.my/~tcwan/tcw_gpg-20030322.asc
F'print : DCF2 B9B2 FA4D 1208 AD59  14CA 9A8F F54D B2C4 63C7
-- Forwarded message --
Date: Wed, 28 May 2003 11:21:33 +0800 (SGT)
From: Wan Tat Chee [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Mplayer patch for new runtime
Rob,

Since you'll be building a new runtime, can you please make sure that the
following mplayer patch has been applied (it's supposed to be in the
latest mplayer CVS). This is to fix the issue of no audio unmuting during
TV playback on v4l2-only devices (e.g., saa7134 TV cards).
To use this feature, the tv parameters have to include 'forceaudio'. I
don't think the tvcmd tv parameters in src/tv/mplayer.py can be
overridden via local_config.py yet.
Also, the tvcmd for vcr mode hardcodes chanlist=us-cable. Can it use
the same format as for TV viewing where chanlist is a variable which
takes its value from freevo.conf?
Thanks.
T.C.
--- ../MPlayer-0.90/libmpdemux/tvi_v4l.cSun Feb  2 03:36:35 2003
+++ libmpdemux/tvi_v4l.cTue Apr 29 04:23:47 2003
@@ -815,6 +815,7 @@
return(TVI_CONTROL_FALSE);
}
case TVI_CONTROL_IS_AUDIO:
+   if (tv_param_force_audio) return(TVI_CONTROL_TRUE);
if (priv-channels[priv-act_channel].flags  VIDEO_VC_AUDIO)
{
return(TVI_CONTROL_TRUE);


---
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel


[Freevo-devel] Re: [Freevo-users] ripping interface?

2003-06-11 Thread Rich C
Paul, for .mp3s I see that Lame can tag with ID3V2,
I'm assuming this is the same functionality that the
id3v2.py module has.?  If so, it's probably easier for
me to just add the tagging into the Lame commandline
that i execute.

My module is now almost useable, but I've got to clean
up some of the menuing and plugin stuff I'm doing
since it was just kind of copied from another module
and kludged in and I'm not exactly sure how the whole
menuing/plugin-in features of freevo work  yet.  

 Also, i need to figure out how to select among the CD
drives if there is more than one on the PC -at the
moment I just hardcoded selecting the one thats in my
computer (.config.REMOVABLE_MEDIA[1]).  If anyone has
any advice on the above I'd appreciate it.

Lastly, I also need to figure out how to show some
sort of status bar to show the ripping progress. 
cdparanoia and lame report a text progress bar/%done,
I can probably parse that somehow to drive a status
bar within Freevo.

Cheers,
Rich
--- Aubin Paul [EMAIL PROTECTED] wrote:
 I'm interested; though I'd like to see what happens
 with Xiph before
 going further. I'm sure that whatever happens with
 encoding, it'll
 involve either pipes or some other way of specifying
 how to encode.
 
 The big problem is tagging; we have Python libraries
 for writing Ogg
 and ID3v2.4 tags, but I haven't seen anything for
 FLAC.
 
 Aubin
 
 On Thu, Jun 12, 2003 at 04:05:49AM +, mark
 wrote:
  
  Okay, I'm late to this thread, but is anyone else
 interested in flac lossless compression?  At the
 moment I've been ripping manually and storing as
 .wavs.  I'd like to use flac at some point, but I'm
 not sure how to play them on the framebuffer.  I
 understand Mplayer can use xmms plugins and that
 xmms has a flac plugin but I havent tried this.
  
  I dont have the skill to implement this into
 Freevo, and understand that most people will want
 lossy compression.  In that case, if its not too
 much trouble I would appreciate it if there could be
 an local_config.py option just to rip to wav's so
 that they could be compressed from an ssh connection
 using flac or left as wavs which freevo already
 handles.  
  
  Mark
  
  
  On Mon, 9 Jun 2003 12:09:15 -0700 (PDT)
  Rich C [EMAIL PROTECTED] wrote:
  
   Hello Gents,
   
   I've spent the last week or so doing just that. 
 I
   have a plugin that can rip a CD to the hard
 drive as a
   .wav at the moment (next step, tonight probably,
 will
   be converting it to .mp3). It is capable of
 pulling
   the CDDB info for the CD and using this info to
 write
   the .wav files to your audio directory. 
   
   
   -Rich
   
   
   --- Brian Lalor [EMAIL PROTECTED] wrote:
Aubin Paul wrote:
 Yes, it's definitely something I'd like to
 see
(and may have to do
 myself :) but I currently don't have a
 Freevo
machine with a ROM
 drive. I just ordered one, so after that
 comes in,
it'll probably be
 one of my priorities.
 
 Short answer: wait a little while :)

Cool!  :-)

-- 
__   
   / /  / __/ Brian Lalor
  / _ \/__ \  [EMAIL PROTECTED]
/_.__//  http://bravo5.org/


   
  

---
This SF.net email is sponsored by:  Etnus,
 makers of
TotalView, The best
thread debugger on the planet. Designed with
 thread
debugging features
you've never dreamed of, try TotalView 6 free
 at
www.etnus.com.
   
 ___
Freevo-users mailing list
[EMAIL PROTECTED]
   
  

https://lists.sourceforge.net/lists/listinfo/freevo-users
   
   
   __
   Do you Yahoo!?
   Yahoo! Calendar - Free online calendar with sync
 to Outlook(TM).
   http://calendar.yahoo.com
   
   
  

---
   This SF.net email is sponsored by:  Etnus,
 makers of TotalView, The best
   thread debugger on the planet. Designed with
 thread debugging features
   you've never dreamed of, try TotalView 6 free at
 www.etnus.com.
   ___
   Freevo-users mailing list
   [EMAIL PROTECTED]
  

https://lists.sourceforge.net/lists/listinfo/freevo-users
  
  
  
  
 

---
  This SF.NET email is sponsored by: eBay
  Great deals on office technology -- on eBay now!
 Click here:
  http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
  ___
  Freevo-users mailing list
  [EMAIL PROTECTED]
 

https://lists.sourceforge.net/lists/listinfo/freevo-users
 
 

---
 This SF.NET email is sponsored by: eBay
 Great deals on office technology -- on eBay now!
 Click here:
 http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
 ___
 Freevo-users mailing list
 [EMAIL PROTECTED]


Re: [Freevo-devel] Re: [Freevo-users] ripping interface?

2003-06-11 Thread Aubin Paul
On Wed, Jun 11, 2003 at 08:40:09PM -0700, Rich C wrote:
 Paul, for .mp3s I see that Lame can tag with ID3V2,
 I'm assuming this is the same functionality that the
 id3v2.py module has.?  If so, it's probably easier for
 me to just add the tagging into the Lame commandline
 that i execute.

I don't believe Lame does ID3v2, but it's up to you. Do it how 
it works best for you, and I'll add an optional id3v2 layer if
I need it.

  Also, i need to figure out how to select among the CD
 drives if there is more than one on the PC -at the
 moment I just hardcoded selecting the one thats in my
 computer (.config.REMOVABLE_MEDIA[1]).  If anyone has
 any advice on the above I'd appreciate it.

The best way to do it would be to attach an action to the CD rom
drives that show up under Audio; that way, it would be simple to
choose.

 Lastly, I also need to figure out how to show some
 sort of status bar to show the ripping progress. 
 cdparanoia and lame report a text progress bar/%done,
 I can probably parse that somehow to drive a status
 bar within Freevo.

I think we're going to make a GUI element to do that, so just
parse it and we'll attach the GUI element later...

Aubin


---
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel


[Freevo-devel] Re: [Freevo-users] runtime-pre5-test1 available and call for testers

2003-06-11 Thread Rob Shortt
In case anyone is wondering, I have removed this download from the 
website until I recover my machine and have a chance to add 
freevo_python to the package.  Sometme this evening... (~10 hours).

Sorry for any inconvenience,
-Rob
Rob Shortt wrote:
Ok, the biggest problem would be the fact that there's no freevo_python 
inside!  I guess I was too tired and messed up my last update.  Anyhow, 
my Freevo box won't boot now so I must fix that first.

-Rob

Rob Shortt wrote:

Hi all,

There is a new runtime version available and the sooner we can test it 
out the sooner we can go ahead and release 1.3.2-pre5. :)

For those of you that are feeling adventurous and are using Freevo 
from CVS you may cvs update and then install this new runtime 
version.  You may find the runtime here:

http://freevo.sf.net/runtime/runtime-pre5-test1.tar.gz

Before you unpack this runtime you should probably backup your 
existing runtime directory just in case.

cd /path/to/freevo
mv runtime runtime.orig
cvs update -d runtime
tar zxvf runtime-pre5-test1.tar.gz
This runtime package has runtime/apps,lib,dll,preloads inside and will 
compliment the runtime directory out of CVS.

Be warned that this runtime weighs in at a hefty 18 megs but I think 
that is a fair price to pay for less problems in the field.  Also 
please note that you must update and recompile runapp because I had to 
modify it to handle staticly compiled apps.

Things to test:

-dxr3 support
-directfb support
-alsa support (mplayer)
-play dvd, cd, mp3, ogg
-test images
-test different video file formats.  I had mplayer freeze on some of 
my mpeg1 files but not others for instance.  mplayer should also play 
nuv files from mythtv, and hopefully normal nuv files... if not then I 
will remove that patch.
-someone who already uses it should test timeshifting
-test mp1e in runtime/apps.  This is compiled with a btaudio patch and 
also supports v4l2.
-test mencoder

I don't have a regular v4l or v4l2 device in my Freevo box anymore 
(using ivtv, woo hoo!!) so testing mencoder is especially important.

Also there was a mysterious audio crash in -pre4 and CVS that happened 
while skipping to the next song which seems to have gone away, please 
test this also (ok so that would be pretty obvious).

The runtime contains:
mplayer
mencoder
mpe1
jpegtran
cdparanoia
fceu
aumix
python 2.2.2 with modules:
CDDB
DiscID
Numeric
PIL
xmlplus
xmms
aomodule
cdrom
fchksum
mmpython
mx
ogg
pygame
pygphoto
pylirc
pyshift
twisted
I have been entertaining thoughs of including xmame but I think it is 
a bit large and most people who use it usually find their own package 
anyways.

I don't think that I have forgotten to mention anything but I may 
followup later.

Thanks!
-Rob


---
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel


[Freevo-devel] Re: [Freevo-users] runtime-pre5-test1 available and call for testers

2003-06-11 Thread Aubin Paul
Rob,

Can you perhaps add tvtime to the runtime, it only requires xlibs, and
a dynamic binary is about 350k. I just think that for the many people
who have had audiosync problems, it's a much nicer alternative. Plus,
after you and Dischi try it, you may be convinced to switch from
mplayer to tvtime.

It has a nice OSD, great quality and perfect audio sync.

(You can also link it to directfb if you want) 

Aubin


On Wed, Jun 11, 2003 at 09:56:30AM -0300, Rob Shortt wrote:
 
 In case anyone is wondering, I have removed this download from the 
 website until I recover my machine and have a chance to add 
 freevo_python to the package.  Sometme this evening... (~10 hours).
 
 Sorry for any inconvenience,
 -Rob
 
 Rob Shortt wrote:
 
 Ok, the biggest problem would be the fact that there's no freevo_python 
 inside!  I guess I was too tired and messed up my last update.  Anyhow, 
 my Freevo box won't boot now so I must fix that first.
 
 -Rob
 
 Rob Shortt wrote:
 
 
 Hi all,
 
 There is a new runtime version available and the sooner we can test it 
 out the sooner we can go ahead and release 1.3.2-pre5. :)
 
 For those of you that are feeling adventurous and are using Freevo 
 from CVS you may cvs update and then install this new runtime 
 version.  You may find the runtime here:
 
 http://freevo.sf.net/runtime/runtime-pre5-test1.tar.gz
 
 Before you unpack this runtime you should probably backup your 
 existing runtime directory just in case.
 
 cd /path/to/freevo
 mv runtime runtime.orig
 cvs update -d runtime
 tar zxvf runtime-pre5-test1.tar.gz
 
 This runtime package has runtime/apps,lib,dll,preloads inside and will 
 compliment the runtime directory out of CVS.
 
 Be warned that this runtime weighs in at a hefty 18 megs but I think 
 that is a fair price to pay for less problems in the field.  Also 
 please note that you must update and recompile runapp because I had to 
 modify it to handle staticly compiled apps.
 
 Things to test:
 
 -dxr3 support
 -directfb support
 -alsa support (mplayer)
 -play dvd, cd, mp3, ogg
 -test images
 -test different video file formats.  I had mplayer freeze on some of 
 my mpeg1 files but not others for instance.  mplayer should also play 
 nuv files from mythtv, and hopefully normal nuv files... if not then I 
 will remove that patch.
 -someone who already uses it should test timeshifting
 -test mp1e in runtime/apps.  This is compiled with a btaudio patch and 
 also supports v4l2.
 -test mencoder
 
 I don't have a regular v4l or v4l2 device in my Freevo box anymore 
 (using ivtv, woo hoo!!) so testing mencoder is especially important.
 
 Also there was a mysterious audio crash in -pre4 and CVS that happened 
 while skipping to the next song which seems to have gone away, please 
 test this also (ok so that would be pretty obvious).
 
 The runtime contains:
 mplayer
 mencoder
 mpe1
 jpegtran
 cdparanoia
 fceu
 aumix
 python 2.2.2 with modules:
 CDDB
 DiscID
 Numeric
 PIL
 xmlplus
 xmms
 aomodule
 cdrom
 fchksum
 mmpython
 mx
 ogg
 pygame
 pygphoto
 pylirc
 pyshift
 twisted
 
 I have been entertaining thoughs of including xmame but I think it is 
 a bit large and most people who use it usually find their own package 
 anyways.
 
 I don't think that I have forgotten to mention anything but I may 
 followup later.
 
 Thanks!
 -Rob
 
 
 
 ---
 This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
 thread debugger on the planet. Designed with thread debugging features
 you've never dreamed of, try TotalView 6 free at www.etnus.com.
 ___
 Freevo-users mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/freevo-users


---
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
___
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel