|
FreeBSD General Other questions regarding FreeBSD which do not fit in any of the categories below. |
|
Thread Tools | Display Modes |
|
||||
Video For BSD
Video For BSD (( new project at SourceForge ))
Because of the success of the Video4Linux project, there are large numbers of device drivers available for multimedia cards, digital cameras, and USB devices currently on the market. Since V4L is an active, dynamic project with numerous contributing developers, new hardware drivers are created and bugs are addressed On the other hand, BSD supports older Brooktree 'bktr' tuner chips that are no longer in production. If you want to watch TV on your FreeBSD system you might be able to find an old analog 'bktr' card on eBay. But why bother? In a few months (February 2009) there won't be any NTSC broadcasts in the USA, only ATSC will be available. In many other places, broadcasts are switching from PAL/SECAM to DVB-T. Why BSD?
Philosophical Differences There are fundamental philosophical differences in support for multimedia on Linux and BSD. Linux has moved V4L support into the kernel. This certainly makes the kernel more complex, bloated, and prone to potential problems. Hundreds of devices, most of which are not currently in your system, are supported. When a hardware is no longer used, dead code will remain in the Linux kernel for years to come. New hardware will require newer kernels. The BSD philosophy is that putting non-time critical code in the kernel only bloats the kernel. BSD seeks to protect the hardware by providing a level of abstraction between user programs and critical hardware. This is probably the main reason for BSD's vaunted stability. Of course, if BSD doesn't support V4L, much work will have to be repeated in re-writing new hardware drivers. Most hardware which just 'plugs-n-plays' on Linux will never work on BSD. Bugs fixed in V4L will not be propagated to BSD. There's similar project at: http://wiki.freebsd.org/HDTV Support for HDTV on FreeBSD is just starting out. John-Mark Gurney has added support an ATSC based card with work underway for a second. There is no known support for the DVB family. John-Mark Gurney has also written the beginning of a design document on how to provide generic multimedia support under FreeBSD. Project Goal This project will implement a V4L compatible API and device drivers for the BSD systems, enabling you to run Linux video applications on BSD. Our goal is to provide an emulation layer that would let us recompile the linux source code on BSD, and provide a sufficiently complete emulation of the Linux kernel APIs so that device drivers can be used without significant modifications to their source code. Source for working device drivers, ports of Linux multimedia applications, along with notes on how to install various multimedia devices on BSD will be made available in this SourceForge repository. Project releases will have the FreeBSD copyright a simple, permissive, non-copyleft free software license, compatible with the GNU GPL. Can it be done? Here's an example by Luigi Rizzo on Building Linux Device Drivers on FreeBSD for several webcams. Here's another example on porting a DVB-T television USB-Stick driver. (NOTE: the HW manufacturer has released a new revision of their DVB-T USB stick that is not supported by this driver. --- this is the reason this project is needed. If BSD had a central location providing HW drivers; updates, fixes, and new HW could be supported ). The port available in: /usr/ports/devel/linux-kmod-compat claims that the "porting of a linux driver should be as simple as downloading the linux driver sources, writing a simple Makefile.kmod, and running "make -f Makefile.kld" to produce the driver.ko". Of course, current reality is not that simple --- not yet. In the words of Admiral Horatio Hornblower and Captain Jean-Luc Picard the goal of this project is to "Make it so". Support this Project Hardware manufacturers wanting to expand their customer base world-wide should consider donating hardware, specifications, and expertise to the Video-4-BSD project. Video-4-Linux has often been forced to valiantly create drivers via reverse engineering with USB and PCI bus sniffers. Some corporate legal departments are frightened by the GNU-GPL but have no problem with the FreeBSD license. By making hardware and software specifications available under the FreeBSD license, this project hopes to return/provide assistance to the Video-4-Linux project and a 'Thank You' for making it all possible. Join and Contribute to this Project To join this effort, first join SourceForge and then send an email to the members discussion list containing your SourceForge username.
__________________
- Fritz Katz |
|
||||
Now this is good news :-)
__________________
My Journal Thou shalt check the array bounds of all strings (indeed, all arrays), for surely where thou typest ``foo'' someone someday shall type ``supercalifragilisticexpialidocious''. |
|
|||
OpenBSD -CURRENT has a video(4), a V4L compatibility layer... and uvideo(4) for newer UVC cameras.
If the layer you propose is incompatible, a lot of user land applications already written for Linux will go to waste. I haven't read about your project in detail, but NTSC isn't entirely dead, it'll still be useful in rural areas.. and in Canada, it'll be around until at least 2011. bktr(4) still had it's uses, your point about BSD not having things in kernel isn't entirely accurate either, OpenBSD for instance does not believe in kernel modules, while the functionality remains, it's not used by any kernel drivers. (I'm only aware of kqemu in ports that uses it..). I'll read more about your project goals, but writing drivers for every tuner chipset sounds like a very daunting task... Will the driver support *all* of the BSD derivatives? Without FreeBSD favouritism? |
|
|||||
Quote:
Does the OpenBSD V4L compatibility layer allow V4L device drivers for cameras, DVB/ATSC TV-Tuners, USB sticks, ...etc. to run on OpenBSD? Quote:
Quote:
Quote:
Quote:
__________________
- Fritz Katz Last edited by Fritz_Katz; 19th July 2008 at 10:46 PM. Reason: add 2012 date for analog cable NTSC support. |
|
||||
I would really look into OpenBSDs efforts if I was you.
(note: my OpenBSD machine is headless and X'less)
__________________
My Journal Thou shalt check the array bounds of all strings (indeed, all arrays), for surely where thou typest ``foo'' someone someday shall type ``supercalifragilisticexpialidocious''. |
|
||||
I see the uvideo driver:
http://www.openbsd.org/cgi-bin/man.c...86&format=html Currently supports USB Video Class (UVC) webcams & cameras. I see hooks for V-4-L here: http://www.openbsd.org/cgi-bin/man.c...penBSD+Current Can an off the shelf ATSC or DVB TV-Tuner that just 'plugs-n-plays' in recent Linux kernels be put in an OpenBSD system, be recognized, and run? I had no idea that uvideo driver was so far along. I think yes, the uvideo driver is the way to go -- but in order to run on other *BSDs it would be necessary to have it be a loadable kernel module.
__________________
- Fritz Katz |
|
|||
Nobody said that ATSC/DVB Tuners were supported, uvideo(4) handles UVC devices only, video(4) is a device independent "V4L" compatibility layer.
No drivers have no written to support such devices, porting them from Linux is a bad idea, GPL is only compatible in one direction.. can't have GPL code in a BSD project. (Though honestly, GPL proponents fail to understand the BSD licence and violate it often.). video(4) was only recently developed, only uvideo(4) uses it... but, with that in tree, a motivated developer might write a driver for a ATSC/DVB tuner they own, it probably won't be a LKM though. It's still early, but I can tell you.. not many will be interested in the concept of recompiling a Linux driver for usage on *BSD. |
|
||||
Quote:
Yes you have GPL code in a BSD project. Code licensed under the GNU GPL can be used in other projects, so long as they also are released under the same or a compatible license. We will be 'linking' to the Linux source and providing full source of all our wrappers which we'll release. There are over 1700 'ports' in FreeBSD /usr/ports -- many are GPL'd. They are pulled in as source and built on FreeBSD. I don't see GNU ever suing FreeBSD. Linus Torvalds himself removed the “you may not distribute it for money” restrictions in 1992. Quote:
The driver needs to be a LKM if it's going to be widely accepted in *BSD. Quote:
Otherwise why bother with *BSD at all? Why not wipe the drive and replace it with a Linux distro which will run many devices that you need. --- But why bother with the trouble of Linux when most devices just run out-of-the-box on Windoze or a Mac?
__________________
- Fritz Katz |
|
||||
Ports are third party software not part of the base system.
For GPL software in the FreeBSD Project look at /usr/src/contrib/ for individual license files: most if not all GPL code should live there.
__________________
My Journal Thou shalt check the array bounds of all strings (indeed, all arrays), for surely where thou typest ``foo'' someone someday shall type ``supercalifragilisticexpialidocious''. |
|
||||
This got added to the FreeBSD ports collection today:
http://www.freshports.org/multimedia/cx88/ Quote:
I'd be interested in knowing how well it works ... I have a few (old) TV tuner cards, maybe one of them uses this chip ... |
|
||||
Quote:
Actually, it's mainly for newer cards.
__________________
- Fritz Katz |
Tags |
bsd, multimedia, video |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Recording video stream | jwhal | Other BSD and UNIX/UNIX-like | 7 | 14th February 2009 08:25 PM |
Resample video | graudeejs | General software and network | 1 | 3rd November 2008 10:40 PM |
2 Video Cards, 2 Monitors | Braveheart_BSD | FreeBSD General | 3 | 23rd July 2008 11:55 AM |
video on FreeBSD? | Damien787 | FreeBSD General | 11 | 22nd June 2008 01:06 PM |
How to play an avi video? | aleunix | OpenBSD Packages and Ports | 3 | 16th June 2008 06:25 AM |