Re: [Freevo-users] How do I use the btaudio kernel module to PLAY or capture sound?
Capturing and playback both depend on the application. The main things to remember is that the btaudio device you'll probably use will need to be captured at 32khz, not 44khz which is the default. I used mp1e to record like this: mp1e -F 3 -p /dev/dsp1 -a 0 -S 32000 -s 352x240 -G 352x240 -o output.mpg This gave me flawlessly synced audio and decent video (only 352x240) on a Celeron 400. I don't watch live TV much so I never tried to get it to work with mplayer, but something similar would likely work. Aubin On Fri, Sep 05, 2003 at 09:09:33PM -0600, Matt Goeden wrote: > Howdie, > > How exactly do you use btaudio to play TV audio when watching TV? I get > sound when I pipe it through sox and out to /dev/dsp. > > Is there something simple I have failing to setup? In my conf file, > AUDIO_INPUT_DEVICE is listed as /dev/dsp1. > > If this is not possible, i suggest fixing the FAQ. > > Thanks for the help, > > Matthew Charles Goeden > > _ > Get 10MB of e-mail storage! Sign up for Hotmail Extra Storage. > http://join.msn.com/?PAGE=features/es > > > > --- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > ___ > Freevo-users mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/freevo-users --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
Re: [Freevo-users] XMLTV from TV-Movie...
On Friday 05 September 2003 07:17, Pferdekaemper, Thorsten wrote: > 3. The listings contain a Tag like 16. It seems > that freevo has a problem with that. I deleted the handling of this tag in > epg_xmltv.py to make this work. (freevo does not seem to display the rating > anyway. > can i see an example of this. a copy of your tv.xml in fact? I did this using the tv_grab_na's output and it works fine. so any other grabber output would be helpful. -- Mike Ruelle [EMAIL PROTECTED] http://world.std.com/~mruelle/ --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
Re: [Freevo-users] XMLTV from TV-Movie...
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On September 5, 2003 08:17 am, Pferdekaemper, Thorsten wrote: > Hi, > yesterday, I have installed the grabber from Ben Bucksch which uses the > data sources of TV-Movie to create XMLTV files. At the end, it worked, but > there are some findings I'd want to share. > > 1. The listings sometimes contain real unicode characters, i.e. characters > with a number outside range(256). This causes freevo not to accept the > listing. I then wrote an own function __encode in epg_xmltv.py which looks > roughly like this: > > def __encode(str,code): > try: > return str.encode(code) > except UnicodeError: > result = '' > for ch in str: > try: > result = result + ch.encode(code) > except UnicodeError: > pass > return result > > Then, I have replaced every occurrence of encode in epg_xmltv.py with my > own function. After that, it worked, ommitting the characters which seem > not to be displayable by freevo. That was unnecessary. From the Python library reference:: encode([encoding[,errors]]) Return an encoded version of the string. Default encoding is the current default string encoding. errors may be given to set a different error handling scheme. The default for errors is 'strict', meaning that encoding errors raise a ValueError. Other possible values are 'ignore' and 'replace'. New in version 2.0. Basically, to get the same behaviour as you created you can just use 'ignore' as the second argument to encode(). If you use 'replace', the character will be replaced with '?'. I'd suggest 'replace', but that's a personal preference. > 2. The listings contain a tag, which freevo does not know. There is Freevo doesn't know that tag because it's invalid. The author of the grabber needs to fix that. In fact, you should probably tell the author to validate the XML output against the XMLTV DTD. I highly recommend pyRXP due to it's amazing speed: http://www.reportlab.com/xml/pyrxp.html To use pyRXP to validate, make sure the DTD is in the current directory and run this script on the file you want to validate: - ---cut--- #!/usr/bin/env python import sys, pyRXP def handleMessage(s): sys.stderr.write(s+'\n') if __name__ == '__main__': if len(sys.argv) < 2: sys.stdout.write("Must specify file") sys.exit(2) p = pyRXP.Parser() p.srcName = "XMLTV pyRXP" p.warnCB = handleMessage p.parse(open(sys.argv[1]).read()) - ---cut--- > 3. The listings contain a Tag like 16. It seems > that freevo has a problem with that. I deleted the handling of this tag in > epg_xmltv.py to make this work. (freevo does not seem to display the rating > anyway. Any code using rating for anything other than straight text display should be checking the system attribute. > 4. The listings contain the time in the following format: > 200309042015 CET > But this is IMHO wrong, it should be > 200309042015 CEST > Then, the coding with strptime.strptime in epg_xmltv.py works correctly. > This is not necessarily a problem of freevo, but I just wanted to mention. > I have sent a mail to Ben Bucksch about that. I will also check how the > listings could be converted to the CET/CEST format. I highly recommend using numeric timezones in grabbers. Some of the grabbers from the official XMLTV distribution do this already and the others will be converted soon. Some of those strings are conflicting, such as my timezone, Canada/Atlantic, and Saudi Arabia's, both of which are 'AST'. - -- James Oakley [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.2-rc1-SuSE (GNU/Linux) iD8DBQE/WVl/Ktn0F7+/lLMRAskIAJ9HJB8/9rGdyfKIC/UuYqc/ifO9wQCdHRRH dYvrmj2t4iwE+BiD9BTz9VE= =+Y6h -END PGP SIGNATURE- --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
Re: [Freevo-users] lcd.py
--- Matt Goeden <[EMAIL PROTECTED]> escreveu: > Gustavo, > > The lcd plugin is fantastic. I am using it on a 20 x 4 display. Thanks :) > > The only bug I have found is when I was watching TV and changed > channels to a Spanish channel. I am guessing that lcd.py doesn't > have support for letters with tilde's and that apostrophe thing > over the letter i. Hum, it should support. I will test it here when I have some time, however it may be delayed since I don't use that plugin myself, neither I have LCD, just use ncurses interface to lcdproc. > Food for thought (if i find time, i will implement them myself): > > Backlight control(off when idle) > Screensaver(on when idle) > Also, in the CHAN: field, it would preferrable to use the 2nd field > from > TV_CHANNELS instead of the first since the first contains the > '...zaptoit..." stuff. Ok, I'll replace it too. Also, it lacks support for other players than music & audio, TV and others may come later. Gustavo ___ Desafio AntiZona: participe do jogo de perguntas e respostas que vai dar um Renault Clio, computadores, câmeras digitais, videogames e muito mais! www.cade.com.br/antizona --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] How do I use the btaudio kernel module to PLAY or capture sound?
Howdie, How exactly do you use btaudio to play TV audio when watching TV? I get sound when I pipe it through sox and out to /dev/dsp. Is there something simple I have failing to setup? In my conf file, AUDIO_INPUT_DEVICE is listed as /dev/dsp1. If this is not possible, i suggest fixing the FAQ. Thanks for the help, Matthew Charles Goeden _ Get 10MB of e-mail storage! Sign up for Hotmail Extra Storage. http://join.msn.com/?PAGE=features/es --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] lcd.py
Gustavo, The lcd plugin is fantastic. I am using it on a 20 x 4 display. The only bug I have found is when I was watching TV and changed channels to a Spanish channel. I am guessing that lcd.py doesn't have support for letters with tilde's and that apostrophe thing over the letter i. Food for thought (if i find time, i will implement them myself): Backlight control(off when idle) Screensaver(on when idle) Also, in the CHAN: field, it would preferrable to use the 2nd field from TV_CHANNELS instead of the first since the first contains the '...zaptoit..." stuff. Thanks, Matthew Charles Goeden _ Try MSN Messenger 6.0 with integrated webcam functionality! http://www.msnmessenger-download.com/tracking/reach_webcam --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Re: file_ops plugin
Dirk, Okay, I follow. I also notice that in 1.3.4, the YES and NO in the DELETE screen are no longer displayed. Is that a known issue or perhaps do I have a missing font, etc. ? Jim "Dirk Meyer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Jim Duda wrote: > > I have these options in my local_config.py > > > > plugin.activate('file_ops') > > plugin.activate('df') > > plugin.activate('mixer') > > plugin.remove('plugin_tv') > > > > When freevo starts up, I get the following messages. > > > > failed to load plugin file_ops > > Traceback (most recent call last): > > File "src/plugin.py", line 262, in init > > exec('import %s' % module) > > File "", line 1, in ? > > ImportError: No module named file_ops > > > > However, if I use the "E" key on any filename, I get the next > > window which allows me to delete, etc. > > > > Do I need to worry about this? > > No. You use 1.3.4 or an older cvs version. Only current cvs has > file_ops. You have delete for movies because I maved it from VideoItem > into a plugin for all kinds of files. > > > Dischi > > -- > There are very few problems that cannot be solved by orders ending with > 'or die.' - Alistair J.R. Young > > > --- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Re: Icons vs. Lists in 1.3.4
Sorry, my bad. using SKIN_XML_FILE = 'blue' in local_conf.py works just fine. I was editing the file in a different directory (-: Jim "Jim Duda" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Yeah, I did figure that out. I have these in my local_conf.py, however, > freevo still comes up using the "info" skin. Any ideas? > > SKIN_XML_FILE = 'blue' > FORCE_SKIN_LAYOUT = 1 > > Jim > > "Rob Shortt" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Jim Duda wrote: > > > I just upgraded from version 1.3.2 from 1.3.4. The new look and feel > > > is slick, however, I have one complaint. > > > > > > When I view my MP3 file directory now, I get icons instead of > > > text names. When i select the icon, the text name appears > > > above the icon. The files in the Movies directory appear okay. > > > > > > I would prefer to have the list of text names. > > > > > > What controls this? I cannot figure it out. > > > > Press 'd' to toggle between text and icons, I prefer text as well. You > > may also have SKIN_START_LAYOUT = 1 in your local_conf.py. > > > > -Rob > > > > > > > > --- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > > > > > --- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Re: XMLTV from TV-Movie...
"Pferdekaemper, Thorsten" wrote: > Hi, Hi > yesterday, I have installed the grabber from Ben Bucksch which uses > the data sources of TV-Movie to create XMLTV files. At the end, it > worked, but there are some findings I'd want to share. Thanks, all your fixes are integrated. Dischi -- A lecture is a process where information is passed from the notebook of the lecturer to the notebook of the student without necessarily passing through the minds of either. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Re: Icons vs. Lists in 1.3.4
Yeah, I did figure that out. I have these in my local_conf.py, however, freevo still comes up using the "info" skin. Any ideas? SKIN_XML_FILE = 'blue' FORCE_SKIN_LAYOUT = 1 Jim "Rob Shortt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Jim Duda wrote: > > I just upgraded from version 1.3.2 from 1.3.4. The new look and feel > > is slick, however, I have one complaint. > > > > When I view my MP3 file directory now, I get icons instead of > > text names. When i select the icon, the text name appears > > above the icon. The files in the Movies directory appear okay. > > > > I would prefer to have the list of text names. > > > > What controls this? I cannot figure it out. > > Press 'd' to toggle between text and icons, I prefer text as well. You > may also have SKIN_START_LAYOUT = 1 in your local_conf.py. > > -Rob > > > > --- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] using the VeXP clone of xine with freevo
What would be the down side to using the via flavor(VeXP) of the xine player? I realize it's a bit older and that the documentation demands the latest version, but the VeXP version allows me to get hardware acceleration on my epia m10K board and I would be OK with loosing some finer points, but would of cause need it to still work mostly.. ;-) rgds anders --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Re: Problem with 1.3.4 Install
T.C. Hmm, I hope I'm not being thick. I edited the Makefile and changed: python_compile: runapp ./runapp python src/setup_freevo.py --compile=$(OPTIMIZE),$(PREFIX) TO: python_compile: runapp ./runapp python src/setup_freevo.py --compile=1 I get the same results. linux# make install make -C fbcon make[1]: Entering directory `/usr/src/freevo-1.3.4/fbcon' make -C matroxset make[2]: Entering directory `/usr/src/freevo-1.3.4/fbcon/matroxset' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/usr/src/freevo-1.3.4/fbcon/matroxset' make[1]: Leaving directory `/usr/src/freevo-1.3.4/fbcon' ./runapp python src/setup_freevo.py --compile=1 writing byte-compilation script '[EMAIL PROTECTED]' /usr/src/freevo-1.3.4/runtime/apps/freevo_python -O [EMAIL PROTECTED] /usr/src/freevo-1.3.4/runtime/apps/freevo_python: /lib/ld-linux.so.2: version `GLIBC_PRIVATE' not found (required by ./runtime/dll/libc.so.6) Traceback (most recent call last): File "src/setup_freevo.py", line 249, in ? optimize=optimize) File "/usr/src/freevo-1.3.4/runtime/lib/python2.2/distutils/util.py", line 406, in byte_compile spawn(cmd, verbose=verbose, dry_run=dry_run) File "/usr/src/freevo-1.3.4/runtime/lib/python2.2/distutils/spawn.py", line 38, in spawn _spawn_posix(cmd, search_path, verbose, dry_run) File "/usr/src/freevo-1.3.4/runtime/lib/python2.2/distutils/spawn.py", line 133, in _spawn_posix raise DistutilsExecError, \ distutils.errors.DistutilsExecError: command '/usr/src/freevo-1.3.4/runtime/apps/freevo_python' failed with exit status 1 make: *** [python_compile] Error 1 "Wan Tat Chee" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Jim, > > It's a known issue. > > You need to use the system python package to compile *.pyo files (done by > the make install step). if you change the variable passed to --compile > to 1, then it'll only generate *.pyc files and that should work fine with > the runtime supplied freevo_python. > > T.C. > > > Wan Tat Chee (Lecturer) > School of Computer Science, Univ. of Science Malaysia, > 11800 USM, 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 > > On Thu, 4 Sep 2003, Jim Duda wrote: > > > I'm trying to install freevo-1.3.4, didn't have any problems with 1.3.2. > > I get this error after freevo setup. Can anyone tell me if I need to > > upgrade ld-linux or is this a freevo issue? > > > [...] > > ./runapp python src/setup_freevo.py --compile=2,/usr/local/freevo > > ^ this variable > > > writing byte-compilation script '[EMAIL PROTECTED]' > > /usr/src/freevo-1.3.4/runtime/apps/freevo_python -OO [EMAIL PROTECTED] > > /usr/src/freevo-1.3.4/runtime/apps/freevo_python: /lib/ld-linux.so.2: > > version `GLIBC_PRIVATE' not found (required by ./runtime/dll/libc.so.6) > > > > --- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
Re: [Freevo-users] Using Different Cards
Peter, I have a freevo box that uses an NVidia card (Verto something or other.) I have used TV-out on that card with the framebuffer (booting from Movix) and from x11 using the NVidia drivers from their website. The difference in quality between the two is dramatic. The framebuffer showed artifacts (hard to describe, but it kind of looked like a wavy line occasionally appearing in the picture on the TV) but the X11 with the NVidia driver is unbelieveably good. This morning I played a VCD that seemed noisy when played on my DVD player and it looked noticeably better. The noise didn't seem to be there anymore. I would try both. James Simmons Peter Young wrote: Hi, I was wondering if it's possible to use a RealMagic DVD Decoder as the TV out? I noticed the option to use a dxvr3 card. Is this the same driver or different? Also, to use the TV out of a normal graphics card (eg. TNT2) I prosume I'd use x11. is this correct or am I way off course. Thanks, Peter Young. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
Re: [Freevo-users] Using Different Cards
On Sat, Sep 06, 2003 at 12:43:34AM +1000, Peter Young wrote: >I was wondering if it's possible to use a RealMagic DVD Decoder as the >TV out? I noticed the option to use a dxvr3 card. Is this the same >driver or different? Without knowing too much about the card, I'm not sure, but it is possible to use DXR3 cards for TV out. >Also, to use the TV out of a normal graphics card (eg. TNT2) I prosume >I'd use x11. is this correct or am I way off course. Depends on the card. Some cards, like the Matrox G400 support TV out on the framebuffer, which is nice because Freevo doesn't need the bulk of X11. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Using Different Cards
Hi, I was wondering if it's possible to use a RealMagic DVD Decoder as the TV out? I noticed the option to use a dxvr3 card. Is this the same driver or different? Also, to use the TV out of a normal graphics card (eg. TNT2) I prosume I'd use x11. is this correct or am I way off course. Thanks, Peter Young.
[Freevo-users] XMLTV from TV-Movie...
Hi, yesterday, I have installed the grabber from Ben Bucksch which uses the data sources of TV-Movie to create XMLTV files. At the end, it worked, but there are some findings I'd want to share. 1. The listings sometimes contain real unicode characters, i.e. characters with a number outside range(256). This causes freevo not to accept the listing. I then wrote an own function __encode in epg_xmltv.py which looks roughly like this: def __encode(str,code): try: return str.encode(code) except UnicodeError: result = '' for ch in str: try: result = result + ch.encode(code) except UnicodeError: pass return result Then, I have replaced every occurrence of encode in epg_xmltv.py with my own function. After that, it worked, ommitting the characters which seem not to be displayable by freevo. 2. The listings contain a tag, which freevo does not know. There is some coding in xmltv.py, which cares for the tags and there is something like try: ... except NameError: return 'Error...' But the error I have got was an AttributeError. I have added another except AttributeError to make this work. 3. The listings contain a Tag like 16. It seems that freevo has a problem with that. I deleted the handling of this tag in epg_xmltv.py to make this work. (freevo does not seem to display the rating anyway. 4. The listings contain the time in the following format: 200309042015 CET But this is IMHO wrong, it should be 200309042015 CEST Then, the coding with strptime.strptime in epg_xmltv.py works correctly. This is not necessarily a problem of freevo, but I just wanted to mention. I have sent a mail to Ben Bucksch about that. I will also check how the listings could be converted to the CET/CEST format. Regards, Thorsten --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Re: file_ops plugin
Jim Duda wrote: > I have these options in my local_config.py > > plugin.activate('file_ops') > plugin.activate('df') > plugin.activate('mixer') > plugin.remove('plugin_tv') > > When freevo starts up, I get the following messages. > > failed to load plugin file_ops > Traceback (most recent call last): > File "src/plugin.py", line 262, in init > exec('import %s' % module) > File "", line 1, in ? > ImportError: No module named file_ops > > However, if I use the "E" key on any filename, I get the next > window which allows me to delete, etc. > > Do I need to worry about this? No. You use 1.3.4 or an older cvs version. Only current cvs has file_ops. You have delete for movies because I maved it from VideoItem into a plugin for all kinds of files. Dischi -- There are very few problems that cannot be solved by orders ending with 'or die.' - Alistair J.R. Young --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] Re: German TV listings and how to get them...
"Pferdekaemper, Thorsten" wrote: > Hi, Hi > currently, the servers for german XMLTV listings (www.szing.at and > yasd.cc) seem to be not working. Sigh...again! > So I am searching for alternatives to tv_grab_de. Ben Buksch has > written something which should be able to get the TV listings from > TV-Movie in XMLTV format (see > http://www.bucksch.com/1/projects/various/xmltv/). Perhaps I will > give this one a try in the next few days. The grabber looks great.Much more informations than before. But it's not working with Freevo, there are some changes to be made. Dischi -- You did something because it had always been done, and the explanation was "but we've always done it this way." A million dead people can't have been wrong, can they? -- (Terry Pratchett, The Fifth Elephant) --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
Re: [Freevo-users] wireless media player
Its has some (windoze) software that serves and steams the media to the box... it streams it in the same manner as real player or windows media player does over the net except with a bit more bandwidth and better QOS... - Original Message - From: skeeterskip To: [EMAIL PROTECTED] Sent: Friday, September 05, 2003 9:56 AM Subject: [Freevo-users] wireless media player I was looking at this thing by Gateway and am trying to figure out how it works http://reviews.cnet.com/4505-6473_7-30468925.html . If someone plays video, through it does that mean that video has to be playing on your PC fullscreen to get fullscreen video in living room tv?
[Freevo-users] wireless media player
I was looking at this thing by Gateway and am trying to figure out how it works http://reviews.cnet.com/4505-6473_7-30468925.html . If someone plays video, through it does that mean that video has to be playing on your PC fullscreen to get fullscreen video in living room tv?
Re: AW: [Freevo-users] Problem getting freevo to recognize that a CD- ROM has been inserted - solved!
Wan Tat Chee <[EMAIL PROTECTED]> writes: > The root-priviledges requirement came from the mplayer docs due to trying > to access vidix or other such drivers (might not be necessary for X11/Xv). > Maybe someone can investigate if mplayer 0.90 still needs the root-privs > or otherwise. Don't know about vidix, but root-privs are not needed for X11/Xv. -- Eirik Meland A: Top posters. Q: What is the most annoying thing on Usenet? --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
[Freevo-users] AverTV bad reception.
Howdy, I have recently started playing around with freevo. So far I have tv listings working fine. I am able to view most of the channels in my area (us-bcast) but reception is extremely bad. Is there some fine tunning I can do to improve reception? I know the signal coming in is good 'cause when I connect the coax to the TV I get great reception. Could it be something in one of the many config files? Just ask which info you need from my files and I will post. thanx. ez __ McAfee VirusScan Online from the Netscape Network. Comprehensive protection for your entire computer. Get your free trial today! http://channels.netscape.com/ns/computing/mcafee/index.jsp?promo=393397 Get AOL Instant Messenger 5.1 free of charge. Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promo=380455 --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
AW: AW: [Freevo-users] Problem getting freevo to recognize that a CD- ROM has been inserted - solved!
> -Ursprüngliche Nachricht- > Von: Wan Tat Chee [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 5. September 2003 04:22 > An: [EMAIL PROTECTED] > Betreff: Re: AW: [Freevo-users] Problem getting freevo to recognize that a > CD- ROM has been inserted - solved! > > > I believe I wrote that :) > > Anyway, I haven't tried using non-sudo or non-root access to run mplayer > since the first time I tried it and wrote up the abovementioned paragraph. > The root-priviledges requirement came from the mplayer docs due to trying > to access vidix or other such drivers (might not be necessary for X11/Xv). > Maybe someone can investigate if mplayer 0.90 still needs the root-privs > or otherwise. > Hi, in my system, mplayer definitely does not need root privileges to play tv or movies. I am using... debian woody with kernel based on 2.4.20 tv: terratec cinergy 600 (saa7134 with v4l2) video: some asus-7700 (nvidia, nvidia drivers installed) I am running freevo both in X11 and in vesa framebuffer mode from tty1. Perhaps there are other devices needing root privileges. Regards, Thorsten --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
AW: [Freevo-users] autostart
-Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 5. September 2003 00:59 An: [EMAIL PROTECTED] Betreff: [Freevo-users] autostart Hi there, i'm really new in linux and espacially in freevo ;o) i get freevo to work...great...but i can't start it automatically on bootup. I saw it working on my friends homepc a few days ago...so, is it my fault? I set "export USER=username", cause i found something in the net while i'm searching about this problem. But now i have other failures there: syntax error :o( Thx, for the help! Sterni Hi, my system autostarts freevo without X11. I have written a script which contains login -f thorsten In /etc/inittab, one of the gettys is started using this script instead of the normal login (there is an option for getty for doing this). In ~thorsten/.bash_profile you can just insert something like ./freevo to start freevo. Regards, Thorsten --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users