From owner-freebsd-multimedia@FreeBSD.ORG Sun Feb 3 10:43:47 2013 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1F82826D; Sun, 3 Feb 2013 10:43:47 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 34E3D1BC; Sun, 3 Feb 2013 10:43:45 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id MAA07244; Sun, 03 Feb 2013 12:43:44 +0200 (EET) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1U1x32-0006Eb-Kz; Sun, 03 Feb 2013 12:43:44 +0200 Message-ID: <510E3F5F.8090104@FreeBSD.org> Date: Sun, 03 Feb 2013 12:43:43 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130121 Thunderbird/17.0.2 MIME-Version: 1.0 To: Alexander Motin Subject: Re: sound(4) vs alsa oss plugin References: <5103A438.9010806@FreeBSD.org> <5108111F.3080205@FreeBSD.org> In-Reply-To: <5108111F.3080205@FreeBSD.org> X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=x-viet-vps Content-Transfer-Encoding: 7bit Cc: freebsd-multimedia@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Feb 2013 10:43:47 -0000 on 29/01/2013 20:12 Alexander Motin said the following: > I am not sure how it supposed to work in Linux, but IMHO it is obvious > that single ptr field is not sufficient in such conditions to identify > full buffer wrap. Additional checks for bytes or blocks fields could > help, but that is user-level side. I am not sure what kernel can do > about it. I have a very nasty local kernel-side hack that "fixes up" 'ptr' wrap-around based on a check of 'blocks'. But root causes are, of course: - an application using sleep and GET*PTR for interacting with OSS - ALSA OSS using just 'ptr' - a 10 millisecond sleep taking e.g. 100 milliseconds once in a while (or under some circumstances) > From the other side, case when buffer wrapped completely is IMHO already > fatal situation. It means that we are already late -- hardware already > started to either play or overwrite previous buffer. That is probably > not much better then if we would woke up some samples later. Well, some sound distortion/corruption is very bad, but completely blocked sound is even worse. I have the following patch for ALSA OSS, but haven't tested it yet: diff --git a/oss/pcm_oss.c b/oss/pcm_oss.c index d43b44c..4729962 100644 --- a/oss/pcm_oss.c +++ b/oss/pcm_oss.c @@ -83,7 +83,13 @@ static snd_pcm_sframes_t oss_pointer(snd_pcm_ioplug_t *io) fprintf(stderr, "*** OSS: oss_pointer error\n"); return 0; } - ptr = snd_pcm_bytes_to_frames(io->pcm, info.ptr); + + /* + * Note that the following calculations will produce a temporary glitch + * when info.bytes wraps around UINT_MAX or INT_MAX depending on type + * of info.bytes in an OSS implementation. + */ + ptr = snd_pcm_bytes_to_frames(io->pcm, info.bytes) % io->buffer_size; return ptr; } -- Andriy Gapon From owner-freebsd-multimedia@FreeBSD.ORG Sun Feb 3 13:32:18 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 766C376F; Sun, 3 Feb 2013 13:32:18 +0000 (UTC) (envelope-from mavbsd@gmail.com) Received: from mail-bk0-f47.google.com (mail-bk0-f47.google.com [209.85.214.47]) by mx1.freebsd.org (Postfix) with ESMTP id D344580C; Sun, 3 Feb 2013 13:32:17 +0000 (UTC) Received: by mail-bk0-f47.google.com with SMTP id jc3so2367237bkc.6 for ; Sun, 03 Feb 2013 05:32:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=zmgUdIy+wkDWZmJyO3BNrfA95w1ZOSvJVe3mrpcyF5s=; b=eli0wFM2BjYRTlVK+GG3eozJNrYBCjHdCcJz7piZxylGcrlew4iwhJonm+1G+FOffr CzfI1jmftmpWLkPKMf/SFoRntMPtWETp1rge85H81ux1guokyHyQTDN6CN+IHxbEVFTj w3kc4gRKM0YHIOu30TduJhNQf7n0L2+xOG9O/7krBT5Q2xFbBREFCtNMzL5ufPg59tDK BeQvMUsooe/8a9pjgyaWe7f1ufwxZQSO3vKiANgfCMKJ3wC/QAKu2qw3C16S01FkQrGf sFyu87NV6QpBCe8iIKcQ+dBb7rXtnCdd2HnzntqgdDaFUfkwc5tXkZFJXyO1lqB2H0MH BcMw== X-Received: by 10.204.4.81 with SMTP id 17mr4807529bkq.137.1359898331117; Sun, 03 Feb 2013 05:32:11 -0800 (PST) Received: from mavbook.mavhome.dp.ua (mavhome.mavhome.dp.ua. [213.227.240.37]) by mx.google.com with ESMTPS id n1sm4368188bkv.14.2013.02.03.05.32.08 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 03 Feb 2013 05:32:09 -0800 (PST) Sender: Alexander Motin Message-ID: <510E66D7.9070608@FreeBSD.org> Date: Sun, 03 Feb 2013 15:32:07 +0200 From: Alexander Motin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130125 Thunderbird/17.0.2 MIME-Version: 1.0 To: Andriy Gapon Subject: Re: sound(4) vs alsa oss plugin References: <5103A438.9010806@FreeBSD.org> <5108111F.3080205@FreeBSD.org> <510E3F5F.8090104@FreeBSD.org> In-Reply-To: <510E3F5F.8090104@FreeBSD.org> Content-Type: text/plain; charset=x-viet-vps Content-Transfer-Encoding: 7bit Cc: freebsd-multimedia@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Feb 2013 13:32:18 -0000 On 03.02.2013 12:43, Andriy Gapon wrote: > on 29/01/2013 20:12 Alexander Motin said the following: >> I am not sure how it supposed to work in Linux, but IMHO it is obvious >> that single ptr field is not sufficient in such conditions to identify >> full buffer wrap. Additional checks for bytes or blocks fields could >> help, but that is user-level side. I am not sure what kernel can do >> about it. > > I have a very nasty local kernel-side hack that "fixes up" 'ptr' wrap-around > based on a check of 'blocks'. > But root causes are, of course: > - an application using sleep and GET*PTR for interacting with OSS > - ALSA OSS using just 'ptr' > - a 10 millisecond sleep taking e.g. 100 milliseconds once in a while (or under > some circumstances) > >> From the other side, case when buffer wrapped completely is IMHO already >> fatal situation. It means that we are already late -- hardware already >> started to either play or overwrite previous buffer. That is probably >> not much better then if we would woke up some samples later. > > Well, some sound distortion/corruption is very bad, but completely blocked sound > is even worse. > > I have the following patch for ALSA OSS, but haven't tested it yet: > diff --git a/oss/pcm_oss.c b/oss/pcm_oss.c > index d43b44c..4729962 100644 > --- a/oss/pcm_oss.c > +++ b/oss/pcm_oss.c > @@ -83,7 +83,13 @@ static snd_pcm_sframes_t oss_pointer(snd_pcm_ioplug_t *io) > fprintf(stderr, "*** OSS: oss_pointer error\n"); > return 0; > } > - ptr = snd_pcm_bytes_to_frames(io->pcm, info.ptr); > + > + /* > + * Note that the following calculations will produce a temporary glitch > + * when info.bytes wraps around UINT_MAX or INT_MAX depending on type > + * of info.bytes in an OSS implementation. > + */ > + ptr = snd_pcm_bytes_to_frames(io->pcm, info.bytes) % io->buffer_size; > return ptr; > } > > What is the idea of this patch? Won't calculated result be exactly the same? -- Alexander Motin From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 4 09:34:56 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 53A54397; Mon, 4 Feb 2013 09:34:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 213A5777; Mon, 4 Feb 2013 09:34:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r149YuuY009831; Mon, 4 Feb 2013 09:34:56 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r149YuAp009827; Mon, 4 Feb 2013 09:34:56 GMT (envelope-from miwi) Date: Mon, 4 Feb 2013 09:34:56 GMT Message-Id: <201302040934.r149YuAp009827@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-multimedia@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Subject: Re: ports/171958: audio/fluidsynth: Update to version 1.1.6 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2013 09:34:56 -0000 Synopsis: audio/fluidsynth: Update to version 1.1.6 Responsible-Changed-From-To: freebsd-multimedia->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Feb 4 09:34:55 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=171958 From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 4 09:40:00 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8751D7A6; Mon, 4 Feb 2013 09:40:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 612327CF; Mon, 4 Feb 2013 09:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r149e0P9010599; Mon, 4 Feb 2013 09:40:00 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r149e0Gd010595; Mon, 4 Feb 2013 09:40:00 GMT (envelope-from miwi) Date: Mon, 4 Feb 2013 09:40:00 GMT Message-Id: <201302040940.r149e0Gd010595@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-multimedia@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Subject: Re: ports/170134: audio/denemo: Update to version 0.9.4 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2013 09:40:00 -0000 Synopsis: audio/denemo: Update to version 0.9.4 Responsible-Changed-From-To: freebsd-multimedia->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Feb 4 09:39:59 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=170134 From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 4 11:06:47 2013 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C22BF962 for ; Mon, 4 Feb 2013 11:06:47 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id B373AD09 for ; Mon, 4 Feb 2013 11:06:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r14B6ldo028824 for ; Mon, 4 Feb 2013 11:06:47 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r14B6l4R028822 for freebsd-multimedia@FreeBSD.org; Mon, 4 Feb 2013 11:06:47 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Feb 2013 11:06:47 GMT Message-Id: <201302041106.r14B6l4R028822@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-multimedia@FreeBSD.org Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2013 11:06:47 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/175306 multimedia [snd_hda] snd_hda does not produce 7.1 sound on ALC892 o kern/175220 multimedia [sound] sound stopping: play interrupt timeout, channe f ports/175008 multimedia audio/gstreamer-plugins-soundtouch C++ compiler error o kern/174876 multimedia [sound] After upgrading to 9-STABLE from 9.0-RELEASE p o kern/174828 multimedia [sound] [snd_emu10kx]: "Creative SB PCI512 [CT4790]" i o kern/174796 multimedia [emu10kx]: Audigy ZS driver produce strange noises o kern/174573 multimedia [snd_hda] headphones on front panel not working anymor o ports/174338 multimedia [patch] multimedia/mkvtoolnix: update to 5.9.0 o ports/174287 multimedia multimedia/gstreamer-plugins-good fails to compile wit o ports/173895 multimedia [PATCH] unbreak multimedia/linux-realplayer o ports/173891 multimedia Living MASTER_SITES for multimedia/linux-realplayer o ports/173741 multimedia multimedia/dirac fails to compile with clang o ports/172185 multimedia multimedia/vlc build fail with gmake core dump at modu o ports/172128 multimedia building multimedia/vlc fails o kern/171937 multimedia [pcm] Notebook Toshiba Satellite C850-B1K and problem o ports/171888 multimedia [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 o ports/171248 multimedia multimedia/win32-codecs: Fix pkg-plist o kern/171191 multimedia [snd_cmi] [request] add driver support for cmi8787/878 o ports/170517 multimedia [patch] Correct audio/jack Dependency Declaration o ports/170032 multimedia Some ports not bumped after libogg update o ports/169563 multimedia [patch] audio/jack-rack o ports/165090 multimedia audio/faad missing head files o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl a ports/153735 multimedia multimedia/vlc: install error: `Permission denied' for o kern/152622 multimedia [pcm] uaudio recording problem o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150284 multimedia [snd_hda] No gain with Audio o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 93 problems total. From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 4 13:18:46 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 39FD9D7 for ; Mon, 4 Feb 2013 13:18:46 +0000 (UTC) (envelope-from jakub_lach@mailplus.pl) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id 0B16E1B2F for ; Mon, 4 Feb 2013 13:18:45 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1U2Lwb-0005th-6F for freebsd-multimedia@freebsd.org; Mon, 04 Feb 2013 05:18:45 -0800 Date: Mon, 4 Feb 2013 05:18:45 -0800 (PST) From: Jakub Lach To: freebsd-multimedia@freebsd.org Message-ID: <1359983925185-5783699.post@n5.nabble.com> In-Reply-To: <1354988009870-5767651.post@n5.nabble.com> References: <1354988009870-5767651.post@n5.nabble.com> Subject: Re: digital bitperfect stream with snd_uaudio and offsite DAC MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2013 13:18:46 -0000 Thanks FreeBSD! All works really fine- Feb 4 14:00:20 Thinkpad kernel: ugen5.2: at usbus5 Feb 4 14:00:20 Thinkpad kernel: uaudio0: on usbus5 Feb 4 14:00:20 Thinkpad kernel: uaudio0: Play: 96000 Hz, 2 ch, 24-bit S-LE PCM format, 2x8ms buffer. Feb 4 14:00:20 Thinkpad kernel: uaudio0: Record: 96000 Hz, 2 ch, 24-bit S-LE PCM format, 2x8ms buffer. Feb 4 14:00:20 Thinkpad kernel: uaudio0: No midi sequencer. Feb 4 14:00:20 Thinkpad kernel: pcm0: on uaudio0 uhci an snd_uaudio module, nothing more. O2+ODAC combo (http://nwavguy.blogspot.com/) Recommended! -- View this message in context: http://freebsd.1045724.n5.nabble.com/digital-bitperfect-stream-with-snd-uaudio-and-offsite-DAC-tp5767651p5783699.html Sent from the freebsd-multimedia mailing list archive at Nabble.com. From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 5 10:22:47 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C9FD1EDE for ; Tue, 5 Feb 2013 10:22:47 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-wg0-f43.google.com (mail-wg0-f43.google.com [74.125.82.43]) by mx1.freebsd.org (Postfix) with ESMTP id 6C1E5B47 for ; Tue, 5 Feb 2013 10:22:47 +0000 (UTC) Received: by mail-wg0-f43.google.com with SMTP id e12so5374620wge.34 for ; Tue, 05 Feb 2013 02:22:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=QfD7LHovI4cXpHwhS5/IUtV/Er4BWg4QUBxrfw+fduQ=; b=MieBXQFNLI5gQhwrPByeKH04d+BW8Wq4hLCk8f3SfHZ7lZtX5H92Dg3c55XY1Vz5eD 1orfHRsOStP44CESC5cHQL5+Jp1zqXKD5Wo7BahY8HtS9MqrTnAU+E04i5vXvOcHmiHE 2WKonKsPzXTYZW4GDQJJtFiTESWDMWlov0uK8m+pKGR7Ge6C1U3VQinTt96RHBhSW37r DuA0aDnFs1yrQ6d31JhscnsODPUJXbO4yb48mCuToylEQEojk2YoSYdCmMQOMAx5/iNV MQurWsCZ/YWEJNtA4WW51YAr9p/cfDoRSNhU5dC7x2wByRos2uyP/Bu87pK3wMq8/xSB dpZw== MIME-Version: 1.0 X-Received: by 10.180.82.9 with SMTP id e9mr16171815wiy.1.1360059766475; Tue, 05 Feb 2013 02:22:46 -0800 (PST) Received: by 10.194.94.133 with HTTP; Tue, 5 Feb 2013 02:22:46 -0800 (PST) In-Reply-To: <51015592.7080807@gmail.com> References: <51015592.7080807@gmail.com> Date: Tue, 5 Feb 2013 11:22:46 +0100 Message-ID: Subject: Fwd: Disable monitor recording source From: David Demelier To: freebsd-multimedia@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2013 10:22:47 -0000 Hello (sorry for forwarding but I didn't have much answers), I would like to record only from mic but I can't remove monitor from recording : markand@Melon ~ $ cat /dev/sndstat FreeBSD Audio Driver (newpcm: 64bit 2009061500/amd64) Installed devices: pcm0: (play) pcm1: (play/rec) default markand@Melon ~ $ mixer Mixer vol is currently set to 90:90 Mixer pcm is currently set to 90:90 Mixer speaker is currently set to 0:0 Mixer mic is currently set to 90:90 Mixer rec is currently set to 80:80 Mixer igain is currently set to 0:0 Mixer ogain is currently set to 100:100 Mixer monitor is currently set to 80:80 Recording source: mic, monitor markand@Melon ~ $ mixer -rec monitor Recording source: mic, monitor markand@Melon ~ $ What I'm doing wrong? Cheers, -- Demelier David From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 5 14:20:03 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2791D15B for ; Tue, 5 Feb 2013 14:20:03 +0000 (UTC) (envelope-from stuartb@4gh.net) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id DD2E5B71 for ; Tue, 5 Feb 2013 14:20:02 +0000 (UTC) Received: from mr16.lnh.mail.rcn.net ([207.172.157.36]) by smtp02.lnh.mail.rcn.net with ESMTP; 05 Feb 2013 09:20:02 -0500 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr16.lnh.mail.rcn.net (MOS 4.3.4-GA) with ESMTP id CFO13496; Tue, 5 Feb 2013 09:20:01 -0500 Received-SPF: None identity=pra; client-ip=216.164.56.133; receiver=smtp01.lnh.mail.rcn.net; envelope-from="stuartb@4gh.net"; x-sender="stuartb@4gh.net"; x-conformance=sidf_compatible Received-SPF: None identity=mailfrom; client-ip=216.164.56.133; receiver=smtp01.lnh.mail.rcn.net; envelope-from="stuartb@4gh.net"; x-sender="stuartb@4gh.net"; x-conformance=sidf_compatible Received-SPF: None identity=helo; client-ip=216.164.56.133; receiver=smtp01.lnh.mail.rcn.net; envelope-from="stuartb@4gh.net"; x-sender="postmaster@freeman.4gh.net"; x-conformance=sidf_compatible X-Auth-ID: stuartb.4gh@starpower.net Received: from 216-164-56-133.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com (HELO freeman.4gh.net) ([216.164.56.133]) by smtp01.lnh.mail.rcn.net with ESMTP; 05 Feb 2013 09:20:01 -0500 Received: by freeman.4gh.net (Postfix, from userid 1001) id E985E130DF6; Tue, 5 Feb 2013 09:20:00 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by freeman.4gh.net (Postfix) with ESMTP id E3780130C4D; Tue, 5 Feb 2013 09:20:00 -0500 (EST) Date: Tue, 5 Feb 2013 09:20:00 -0500 (EST) From: Stuart Barkley To: David Demelier Subject: Re: Fwd: Disable monitor recording source In-Reply-To: Message-ID: References: <51015592.7080807@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-multimedia@freebsd.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2013 14:20:03 -0000 On Tue, 5 Feb 2013 at 05:22 -0000, David Demelier wrote: > Hello (sorry for forwarding but I didn't have much answers), This is probably the best place for this question. > I would like to record only from mic but I can't remove monitor from > recording : > > markand@Melon ~ $ cat /dev/sndstat > FreeBSD Audio Driver (newpcm: 64bit 2009061500/amd64) > Installed devices: > pcm0: (play) > pcm1: (play/rec) default > markand@Melon ~ $ mixer > Mixer vol is currently set to 90:90 > Mixer pcm is currently set to 90:90 > Mixer speaker is currently set to 0:0 > Mixer mic is currently set to 90:90 > Mixer rec is currently set to 80:80 > Mixer igain is currently set to 0:0 > Mixer ogain is currently set to 100:100 > Mixer monitor is currently set to 80:80 > Recording source: mic, monitor > markand@Melon ~ $ mixer -rec monitor > Recording source: mic, monitor > markand@Melon ~ $ > > What I'm doing wrong? A couple simple thoughts: I've always used something like 'mixer =rec mic'. Have you tried that? Does recording work at all? When you record do you get a mix of the mic and the monitor channels? You might also try 'mixer monitor 0' to just mute monitor in the mix. Stuart -- I've never been lost; I was once bewildered for three days, but never lost! -- Daniel Boone From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 5 17:41:54 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0823089B for ; Tue, 5 Feb 2013 17:41:54 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id C020CBF8 for ; Tue, 5 Feb 2013 17:41:53 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r15HfknX031567 for ; Tue, 5 Feb 2013 12:41:46 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r15Hfkj7031450; Tue, 5 Feb 2013 12:41:46 -0500 (EST) (envelope-from portscout) Message-Id: <201302051741.r15Hfkj7031450@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Tue, 5 Feb 2013 12:41:46 -0500 From: portscout@portscout.freebsd.org To: multimedia@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2013 17:41:54 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/multimedia@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ multimedia/p5-GStreamer | 0.17 | 0.18 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 5 20:55:33 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C6F4A850 for ; Tue, 5 Feb 2013 20:55:33 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-wg0-x229.google.com (wg-in-x0229.1e100.net [IPv6:2a00:1450:400c:c00::229]) by mx1.freebsd.org (Postfix) with ESMTP id 649BE7F1 for ; Tue, 5 Feb 2013 20:55:33 +0000 (UTC) Received: by mail-wg0-f41.google.com with SMTP id ds1so4448231wgb.4 for ; Tue, 05 Feb 2013 12:55:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Qhgg09ZV4YxkeAm82eAqGcvLmsXlpF34EekrgIpdtQw=; b=ppcZeVtoP8yghGQNPxlpkGebnELMuOKpc5Tl324HiFpsmY/6mGBgfI6tKILtrgr3M/ 59iJhr5bLRHgWPuGi8TuwsAHMVRXKcjXi02GVF+uIC7kFZ0YWE0Q/9otRhj7suGwYP94 0v+gVkRX28371USAfrBmAyLpIpw2hd7pbD8FR/KrzqDDZnu8ROPvT68Z5x+6XOmZLO3E Y2PT+R9WgfWsIwxe9N0oXMHYyL9Py/94rnDzBlMWwNbJ2obsYbOcOSTi85uDDIU0MllJ Hu45GID5pMeVxJma8FQCyNfsj1tIu7sBAXWuzjX9o+CaCvyBKM3Urz9kE4Gl76gRESQ2 AkJw== X-Received: by 10.180.104.10 with SMTP id ga10mr775207wib.23.1360097732174; Tue, 05 Feb 2013 12:55:32 -0800 (PST) Received: from Melon.malikania.fr (177.33.91.91.rev.sfr.net. [91.91.33.177]) by mx.google.com with ESMTPS id n10sm8451646wia.0.2013.02.05.12.55.30 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Feb 2013 12:55:31 -0800 (PST) Message-ID: <511171A0.5060000@gmail.com> Date: Tue, 05 Feb 2013 21:54:56 +0100 From: David Demelier User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130115 Thunderbird/17.0.2 MIME-Version: 1.0 To: Stuart Barkley Subject: Re: Fwd: Disable monitor recording source References: <51015592.7080807@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-multimedia@freebsd.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2013 20:55:33 -0000 On 05/02/2013 15:20, Stuart Barkley wrote: > On Tue, 5 Feb 2013 at 05:22 -0000, David Demelier wrote: > >> Hello (sorry for forwarding but I didn't have much answers), > > This is probably the best place for this question. > >> I would like to record only from mic but I can't remove monitor from >> recording : >> >> markand@Melon ~ $ cat /dev/sndstat >> FreeBSD Audio Driver (newpcm: 64bit 2009061500/amd64) >> Installed devices: >> pcm0: (play) >> pcm1: (play/rec) default >> markand@Melon ~ $ mixer >> Mixer vol is currently set to 90:90 >> Mixer pcm is currently set to 90:90 >> Mixer speaker is currently set to 0:0 >> Mixer mic is currently set to 90:90 >> Mixer rec is currently set to 80:80 >> Mixer igain is currently set to 0:0 >> Mixer ogain is currently set to 100:100 >> Mixer monitor is currently set to 80:80 >> Recording source: mic, monitor >> markand@Melon ~ $ mixer -rec monitor >> Recording source: mic, monitor >> markand@Melon ~ $ >> >> What I'm doing wrong? > > A couple simple thoughts: > > I've always used something like 'mixer =rec mic'. Have you tried > that? > > Does recording work at all? When you record do you get a mix of the > mic and the monitor channels? > > You might also try 'mixer monitor 0' to just mute monitor in the mix. > > Stuart > I also tried both command you said, mixer monitor 0 will completely disable record, no audio input will be recorded, thus I'm guessing if my mic line is correctly configure with my snd_hda(4) setup. Unfortunately the command mixer =rec mic does not work neither. Cheers, David From owner-freebsd-multimedia@FreeBSD.ORG Wed Feb 6 16:39:24 2013 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8674F529 for ; Wed, 6 Feb 2013 16:39:24 +0000 (UTC) (envelope-from lars@e-new.0x20.net) Received: from mail.0x20.net (mail.0x20.net [IPv6:2001:aa8:fffb:1::3]) by mx1.freebsd.org (Postfix) with ESMTP id 1D21B80B for ; Wed, 6 Feb 2013 16:39:23 +0000 (UTC) Received: from e-new.0x20.net (mail.0x20.net [IPv6:2001:aa8:fffb:1::3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.0x20.net (Postfix) with ESMTPS id BD3BC6A6003; Wed, 6 Feb 2013 17:39:21 +0100 (CET) Received: from e-new.0x20.net (localhost [127.0.0.1]) by e-new.0x20.net (8.14.5/8.14.5) with ESMTP id r16GdLdr036303; Wed, 6 Feb 2013 17:39:21 +0100 (CET) (envelope-from lars@e-new.0x20.net) Received: (from lars@localhost) by e-new.0x20.net (8.14.5/8.14.5/Submit) id r16GdLWc035761; Wed, 6 Feb 2013 17:39:21 +0100 (CET) (envelope-from lars) Date: Wed, 6 Feb 2013 17:39:21 +0100 From: Lars Engels To: Juergen Lock Subject: Re: receiving aerial digital TV Message-ID: <20130206163921.GK55167@e-new.0x20.net> References: <201302021256.r12Cuf5t033483@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="m3XTTgxJ5X/rsrx1" Content-Disposition: inline In-Reply-To: <201302021256.r12Cuf5t033483@triton8.kn-bremen.de> X-Editor: VIM - Vi IMproved 7.3 X-Operation-System: FreeBSD 8.3-RELEASE-p4 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-multimedia@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Feb 2013 16:39:24 -0000 --m3XTTgxJ5X/rsrx1 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Feb 02, 2013 at 01:56:41PM +0100, Juergen Lock wrote: > In article <20130201194812.187567edda1c66ad43a44a20@getmail.no> you write: > >On Fri, 01 Feb 2013 10:27:54 -0800 > >Dieter BSD wrote: > > > >> [ This topic is better discussed in -multimedia@, suggest that followu= ps > >> drop -hackers@ ] > >>=20 > >> > i am out of current knowledge about common TV for about 10 years. > >> > > >> > Currently in Poland there is aerial TV broadcasted in DVB-T standard. > >> > There are TVs with builtin decoder/demodulator or separate > >> > decoders/demodulator with HDMI output. > >> > > >> > But how about just receiving demodulated data and letting mplayer pl= ay it, > >> > and - most importantly - recording it directly. I know there are USB > >> > receivers on market. > >> > > >> > Are such devices supported under FreeBSD? if so - what driver, what > >> > chipset to look when buying such a thing? any other recommendation. > > > >Another option is webcamd (in ports) - it supports a whole lot of usb de= vices, through their linux drivers. > >I currently have an older version installed on this machine: > >root@kg-v2# portversion -v webcamd > >webcamd-3.7.0.4 =3D up-to-date with port=20 > > > >tingo@kg-v2$ apropos webcamd | grep -i dvb > >a800(4) - webcamd driver for AVerMedia AverTV A800 DVB-= T receiver > >af9005(4) - webcamd driver for Afatech 9005 DVB-T receiver > >af9015(4) - webcamd driver for Afatech 9015 DVB-T receiver > >au6610(4) - webcamd driver for AU6610 DVB-T > >ce6230(4) - webcamd driver for Intel CE6230 DVB-T > >cinergy(4) - webcamd driver for Cinergy T2/qanu DVB-T > >cxusb(4) - webcamd driver for Conexant USB DVB > >digitv(4) - webcamd driver for Nebula Electronics uDigiTV= DVB-T > >dtt200u(4) - webcamd driver for DTT200U DVB-T devices > >dtv5100(4) - webcamd driver for AME DTV-5100 DVB-T > >dw2102(4) - webcamd driver for DVBWorld and TeVii DVB-S/S2 > >ec168(4) - webcamd driver for EC168 DVB-T > >gp8psk(4) - webcamd driver for GENPIX DVB-S > >m920x(4) - webcamd driver for m920x DVB-T > >nova-t(4) - webcamd driver for NOVA-T DVB-T > >opera(4) - webcamd driver for Opera1 DVB-S > >ttusb2(4) - webcamd driver for Technotrend DVB > >umt(4) - webcamd driver for UMT-010 DVB-T > >vp702x(4) - webcamd driver for TwinhanDTV StarBox DVB-S > >vp7045(4) - webcamd driver for TwinhanDTV DVB-T > >webcamd(8) - daemon to provide access to USB webcam and DV= B devices >=20 > That list btw is not exhaustive, some (mostly newer) Linux drivers > webcamd includes don't have manpages yet.=20 Can we add stub manpages for those? --m3XTTgxJ5X/rsrx1 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlEShzkACgkQKc512sD3afhUlACeN71UQDp9TXEG863sxEE79fM6 Pi4An3vdp7GZ/D+I0uScZpHxe14/0K46 =l4rz -----END PGP SIGNATURE----- --m3XTTgxJ5X/rsrx1-- From owner-freebsd-multimedia@FreeBSD.ORG Wed Feb 6 16:59:09 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 39CCF34B for ; Wed, 6 Feb 2013 16:59:09 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe07.c2i.net [212.247.154.194]) by mx1.freebsd.org (Postfix) with ESMTP id 92D639E0 for ; Wed, 6 Feb 2013 16:59:08 +0000 (UTC) X-T2-Spam-Status: No, hits=-0.2 required=5.0 tests=ALL_TRUSTED, BAYES_50 Received: from [176.74.213.204] (account mc467741@c2i.net HELO laptop015.hselasky.homeunix.org) by mailfe07.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 374530767; Wed, 06 Feb 2013 17:59:00 +0100 From: Hans Petter Selasky To: freebsd-multimedia@freebsd.org, Dru Lavigne Subject: Re: receiving aerial digital TV Date: Wed, 6 Feb 2013 18:00:11 +0100 User-Agent: KMail/1.13.7 (FreeBSD/9.1-STABLE; KDE/4.8.4; amd64; ; ) References: <201302021256.r12Cuf5t033483@triton8.kn-bremen.de> <20130206163921.GK55167@e-new.0x20.net> In-Reply-To: <20130206163921.GK55167@e-new.0x20.net> X-Face: ?p&W)c(+80hU; '{.$5K+zq{oC6y| /D'an*6mw>j'f:eBsex\Gi, Cc: Juergen Lock X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Feb 2013 16:59:09 -0000 On Wednesday 06 February 2013 17:39:21 Lars Engels wrote: > On Sat, Feb 02, 2013 at 01:56:41PM +0100, Juergen Lock wrote: > > In article <20130201194812.187567edda1c66ad43a44a20@getmail.no> you write: > > >On Fri, 01 Feb 2013 10:27:54 -0800 > > > > > >Dieter BSD wrote: > > >> [ This topic is better discussed in -multimedia@, suggest that > > >> followups drop -hackers@ ] > > >> > > >> > i am out of current knowledge about common TV for about 10 years. > > >> > > > >> > Currently in Poland there is aerial TV broadcasted in DVB-T > > >> > standard. There are TVs with builtin decoder/demodulator or > > >> > separate > > >> > decoders/demodulator with HDMI output. > > >> > > > >> > But how about just receiving demodulated data and letting mplayer > > >> > play it, and - most importantly - recording it directly. I know > > >> > there are USB receivers on market. > > >> > > > >> > Are such devices supported under FreeBSD? if so - what driver, what > > >> > chipset to look when buying such a thing? any other recommendation. > > > > > >Another option is webcamd (in ports) - it supports a whole lot of usb > > >devices, through their linux drivers. I currently have an older version > > >installed on this machine: > > >root@kg-v2# portversion -v webcamd > > >webcamd-3.7.0.4 = up-to-date with port > > > > > >tingo@kg-v2$ apropos webcamd | grep -i dvb > > >a800(4) - webcamd driver for AVerMedia AverTV A800 > > >DVB-T receiver af9005(4) - webcamd driver for Afatech > > >9005 DVB-T receiver af9015(4) - webcamd driver for > > >Afatech 9015 DVB-T receiver au6610(4) - webcamd driver > > >for AU6610 DVB-T > > >ce6230(4) - webcamd driver for Intel CE6230 DVB-T > > >cinergy(4) - webcamd driver for Cinergy T2/qanu DVB-T > > >cxusb(4) - webcamd driver for Conexant USB DVB > > >digitv(4) - webcamd driver for Nebula Electronics uDigiTV > > >DVB-T dtt200u(4) - webcamd driver for DTT200U DVB-T > > >devices dtv5100(4) - webcamd driver for AME DTV-5100 > > >DVB-T dw2102(4) - webcamd driver for DVBWorld and TeVii > > >DVB-S/S2 ec168(4) - webcamd driver for EC168 DVB-T > > >gp8psk(4) - webcamd driver for GENPIX DVB-S > > >m920x(4) - webcamd driver for m920x DVB-T > > >nova-t(4) - webcamd driver for NOVA-T DVB-T > > >opera(4) - webcamd driver for Opera1 DVB-S > > >ttusb2(4) - webcamd driver for Technotrend DVB > > >umt(4) - webcamd driver for UMT-010 DVB-T > > >vp702x(4) - webcamd driver for TwinhanDTV StarBox DVB-S > > >vp7045(4) - webcamd driver for TwinhanDTV DVB-T > > >webcamd(8) - daemon to provide access to USB webcam and > > >DVB devices > > > > That list btw is not exhaustive, some (mostly newer) Linux drivers > > webcamd includes don't have manpages yet. > > Can we add stub manpages for those? Yes, send me a patch! --HPS From owner-freebsd-multimedia@FreeBSD.ORG Thu Feb 7 08:33:17 2013 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 34676966 for ; Thu, 7 Feb 2013 08:33:17 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 10F72CE7 for ; Thu, 7 Feb 2013 08:33:17 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r178SRsc034167 for ; Thu, 7 Feb 2013 08:28:27 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 7 Feb 2013 08:28:27 GMT Message-Id: <201302070828.r178SRsc034167@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: multimedia@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2013 08:33:17 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: multimedia/linux-realplayer broken because: unfetchable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-realplayer-10.0.9.809.20070726_3.log (_Jun_13_02:24:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-realplayer If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-multimedia@FreeBSD.ORG Thu Feb 7 08:34:12 2013 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 22A7FB8B for ; Thu, 7 Feb 2013 08:34:12 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 17D55D44 for ; Thu, 7 Feb 2013 08:34:12 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r178TM9H039759 for ; Thu, 7 Feb 2013 08:29:22 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 7 Feb 2013 08:29:22 GMT Message-Id: <201302070829.r178TM9H039759@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: multimedia@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently scheduled for deletion X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2013 08:34:12 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: multimedia/linux-realplayer description: Linux RealPlayer 10 from RealNetworks maintainer: multimedia@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-realplayer-10.0.9.809.20070726_3.log (_Jun_13_02:24:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-realplayer If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-multimedia@FreeBSD.ORG Thu Feb 7 22:00:11 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B004E7A1; Thu, 7 Feb 2013 22:00:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 89F2E16E; Thu, 7 Feb 2013 22:00:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r17M0BpN002208; Thu, 7 Feb 2013 22:00:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r17M0BPN002204; Thu, 7 Feb 2013 22:00:11 GMT (envelope-from edwin) Date: Thu, 7 Feb 2013 22:00:11 GMT Message-Id: <201302072200.r17M0BPN002204@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/175940: multimedia/gstreamer-plugins-good add missing dependency X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2013 22:00:11 -0000 Synopsis: multimedia/gstreamer-plugins-good add missing dependency Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 7 22:00:11 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=175940 From owner-freebsd-multimedia@FreeBSD.ORG Thu Feb 7 22:30:09 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7FEC0B62; Thu, 7 Feb 2013 22:30:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5B6C826E; Thu, 7 Feb 2013 22:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r17MU9qY008205; Thu, 7 Feb 2013 22:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r17MU9eS008201; Thu, 7 Feb 2013 22:30:09 GMT (envelope-from edwin) Date: Thu, 7 Feb 2013 22:30:09 GMT Message-Id: <201302072230.r17MU9eS008201@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/175941: audio/gstreamer-plugins-ladspa add missing dependency X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2013 22:30:09 -0000 Synopsis: audio/gstreamer-plugins-ladspa add missing dependency Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 7 22:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=175941 From owner-freebsd-multimedia@FreeBSD.ORG Fri Feb 8 20:10:08 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8C59ADDF; Fri, 8 Feb 2013 20:10:08 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 68260CDB; Fri, 8 Feb 2013 20:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r18KA8Nm058363; Fri, 8 Feb 2013 20:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r18KA8l7058359; Fri, 8 Feb 2013 20:10:08 GMT (envelope-from edwin) Date: Fri, 8 Feb 2013 20:10:08 GMT Message-Id: <201302082010.r18KA8l7058359@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/175963: graphics/libcaca X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 20:10:08 -0000 Synopsis: graphics/libcaca Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 8 20:10:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=175963 From owner-freebsd-multimedia@FreeBSD.ORG Fri Feb 8 20:30:08 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AD03267C; Fri, 8 Feb 2013 20:30:08 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 88A40E11; Fri, 8 Feb 2013 20:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r18KU89L062645; Fri, 8 Feb 2013 20:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r18KU8cm062641; Fri, 8 Feb 2013 20:30:08 GMT (envelope-from edwin) Date: Fri, 8 Feb 2013 20:30:08 GMT Message-Id: <201302082030.r18KU8cm062641@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/175965: multimedia/libmpeg2 don't register x11 deps X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 20:30:08 -0000 Synopsis: multimedia/libmpeg2 don't register x11 deps Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 8 20:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=175965 From owner-freebsd-multimedia@FreeBSD.ORG Sat Feb 9 09:37:03 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8910963D; Sat, 9 Feb 2013 09:37:03 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6228FA8; Sat, 9 Feb 2013 09:37:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r199b3bI018122; Sat, 9 Feb 2013 09:37:03 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r199b318018118; Sat, 9 Feb 2013 09:37:03 GMT (envelope-from edwin) Date: Sat, 9 Feb 2013 09:37:03 GMT Message-Id: <201302090937.r199b318018118@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/175865: audio/denemo 0.9.2_2 does not build X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2013 09:37:03 -0000 Synopsis: audio/denemo 0.9.2_2 does not build Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 9 09:37:02 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=175865