From: Gavin H. <gd...@ac...> - 2002-12-07 22:06:14
|
Hullo :) I bought a DC + BBA a year ago to tinker with Linux / NFS stuff, but at the time there was no audio support in the Linux kernel for the DC's onboard sound hardware, and real life got in the way, so I lost interest... Now I see sound has been added and I have a bit of free time to produce a DC-based 'Media Station'... Certainly mp3 and MPEG-1 movie playback is possible from what I've read on the mailing list, but is there sufficient grunt in the DC to play MPEG2 at broadcast quality (702x576 at about 6Mbps) with mp2-sound under X, or if not X, is the framebuffer device adequate for mplayer usage? Cheers! Gavin. |
From: <ps...@wi...> - 2002-12-07 22:14:47
|
i would highly doubt that the DC has the power to play MPEG2 video back, let alone with audio. the framebuffer might be adequate for movie playback, but i'm not sure. best thing to do would be to write a good/better DRI driver and use hardware acceleration to the best of the DC's abilities (or as close as we can get ;) On Sat, 7 Dec 2002 22:05:16 +0000 Gavin Hamill <gd...@ac...> wrote: > Hullo :) > > I bought a DC + BBA a year ago to tinker with Linux / NFS stuff, but at the time there was no audio support in > the Linux kernel for the DC's onboard sound hardware, and real life got in the way, so I lost interest... > > Now I see sound has been added and I have a bit of free time to produce a DC-based 'Media Station'... > > Certainly mp3 and MPEG-1 movie playback is possible from what I've read on the mailing list, but is there > sufficient grunt in the DC to play MPEG2 at broadcast quality (702x576 at about 6Mbps) with mp2-sound under X, > or if not X, is the framebuffer device adequate for mplayer usage? > > Cheers! > Gavin. > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Linuxdc-dev mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxdc-dev > |
From: Adrian M. <ad...@mc...> - 2002-12-07 22:17:04
|
On Saturday 07 Dec 2002 10:05 pm, Gavin Hamill wrote: > Hullo :) > > I bought a DC + BBA a year ago to tinker with Linux / NFS stuff, but at the > time there was no audio support in the Linux kernel for the DC's onboard > sound hardware, and real life got in the way, so I lost interest... > > Now I see sound has been added and I have a bit of free time to produce a > DC-based 'Media Station'... > > Certainly mp3 and MPEG-1 movie playback is possible from what I've read on > the mailing list, but is there sufficient grunt in the DC to play MPEG2 at > broadcast quality (702x576 at about 6Mbps) with mp2-sound under X, or if > not X, is the framebuffer device adequate for mplayer usage? > I think to get that sort of throughput you'd certainly need accelerated 2-D video or else be prepared to accept frames being dropped. I and others have compiled mplayer but there are two eseential problems: 1. Sound driver design (needs dma) eats up processor cycles for high sample rate sounds meaning that the pressure is really on the video 2. Alternative sound driver design (not with dma, but less processor hogging) gives better video performance, but sound clicks and repeats - an accelerated 2d video driver might fix that. If you have a video clip in mind please send me (not the list!) it and I'll give it a try and report performance. Otherwise, if you wanted to tackle either of the above problems (no sound dma, no accelerated video, I'd be more than happy to help!) Adrian |
From: Gavin H. <gd...@ac...> - 2002-12-07 22:43:47
|
Thanks for the fast feedback, guys :) Unfortunately, my own coding skills amount to nothing more than a few lines of shoddy Perl and shell script :/ But, I'll have a tinker nonetheless... my goal would to be to use the DC as a player for a 'Personal Video Recorder' unit (DVB -> MPEG2)... but even if the DC can do fullscreen MPEG1 352x288 then that might be adequate for a bedroom player on a small screen, and make the server box do the conversion from MPEG2 -> MPEG1 on-the-fly... Should be fun whatever happens =) gdh |
From: Adrian M. <ad...@mc...> - 2002-12-08 14:02:16
|
On Saturday 07 Dec 2002 10:42 pm, Gavin Hamill wrote: > Thanks for the fast feedback, guys :) > > Unfortunately, my own coding skills amount to nothing more than a few > lines of shoddy Perl and shell script :/ If you can hack perl, you can do C! |