Re: normalize audio in mp4s

2020-04-07 Thread Emanuel Berg
Jonas Smedegaard wrote: > Maybe your system simply treats multi-channel > audio wrongly. > > A simpler alternative to recoding audio with > fine-tuned values could be something like this to > force use only stereo: > > mpv --audio-channels=stereo ... Yes, I've done that, in ~/.config/mpv/mpv.co

Re: normalize audio in mp4s

2020-03-11 Thread David Wright
On Thu 12 Mar 2020 at 02:38:28 (+0100), Emanuel Berg wrote: > Reco wrote: > > >>> Personally I just reencode audio in such cases. > >>> For instance (0:1 is the first audio track, use 0:2 for > >>> english): > >>> > >>> ffmpeg -i

Re: normalize audio in mp4s

2020-03-11 Thread Jonas Smedegaard
Quoting Emanuel Berg (2020-03-11 17:15:08) > Jonas Smedegaard wrote: > > > Try check if the audio stream of that movie is AC-3, and if > > so then try use mpv with the option --ad-lavc-ac3drc (read > > the man page for valid values). > > OK, I'll try this... > > > If you experience similarly exp

Re: normalize audio in mp4s

2020-03-11 Thread Jonas Smedegaard
Quoting Emanuel Berg (2020-03-12 03:07:23) > Reco wrote: > > > FL = FL + 0.707 * FC + 0.707 * BL > > With mediainfo(1) as recommended by Mr. Smedegaard, I got > this > > $ mediainfo ford-v-ferrari-2019.mkv | grep -i channel > Channel(s) : 6 channels > Channel layout

Re: normalize audio in mp4s

2020-03-11 Thread Emanuel Berg
Reco wrote: > FL = FL + 0.707 * FC + 0.707 * BL With mediainfo(1) as recommended by Mr. Smedegaard, I got this $ mediainfo ford-v-ferrari-2019.mkv | grep -i channel Channel(s) : 6 channels Channel layout : L R C LFE Ls Rs Channel(s)

Re: normalize audio in mp4s

2020-03-11 Thread Emanuel Berg
Reco wrote: > Your typical movie has dialogue on center channel, gunfire > & cars' sounds come from the front channels, ambient comes > from the back ones. > > So, what's needed is to gain volume on dialogues OK, so that's -clev 1.414 since dialog comes from the center. > while downplaying a

Re: normalize audio in mp4s

2020-03-11 Thread Emanuel Berg
Reco wrote: >>> Personally I just reencode audio in such cases. >>> For instance (0:1 is the first audio track, use 0:2 for >>> english): >>> >>> ffmpeg -i ford-v-ferrari-2019.mkv -map 0:0 -map 0:1 \ >>> -c:v copy \ -c:a libopus -b:a 128

Re: normalize audio in mp4s

2020-03-11 Thread Reco
Hi. On Wed, Mar 11, 2020 at 01:51:26PM -0500, David Wright wrote: > > Personally I just reencode audio in such cases. > > For instance (0:1 is the first audio track, use 0:2 for english): > > > > ffmpeg -i ford-v-ferrari-2019.mkv -map 0:0 -map 0:1 \ > >

Re: normalize audio in mp4s

2020-03-11 Thread David Wright
annels=stereo, but > (YMMV of course) I find its downmix lacking. > > Personally I just reencode audio in such cases. > For instance (0:1 is the first audio track, use 0:2 for english): > > ffmpeg -i ford-v-ferrari-2019.mkv -map 0:0 -map 0:1 \ > -c:v copy \ >

Re: normalize audio in mp4s

2020-03-11 Thread Emanuel Berg
Reco wrote: > Personally I just reencode audio in such cases. For instance > (0:1 is the first audio track, use 0:2 for english): > > ffmpeg -i ford-v-ferrari-2019.mkv -map 0:0 -map 0:1 \ > -c:v copy \ > -c:a libopus -b:a 128k -ac 2 -clev 1.414 -slev .5 \ >

Re: normalize audio in mp4s

2020-03-11 Thread Jonas Smedegaard
Quoting Emanuel Berg (2020-03-11 17:15:08) > Jonas Smedegaard wrote: > > > Try check if the audio stream of that movie is AC-3, and if > > so then try use mpv with the option --ad-lavc-ac3drc (read > > the man page for valid values). > > OK, I'll try this... > > > If you experience similarly exp

Re: normalize audio in mp4s

2020-03-11 Thread Reco
s to play it. If you're using mpv, you can try adding --audio-channels=stereo, but (YMMV of course) I find its downmix lacking. Personally I just reencode audio in such cases. For instance (0:1 is the first audio track, use 0:2 for english): ffmpeg -i ford-v-ferrari-2019.mkv -map 0:0 -map 0:

Re: normalize audio in mp4s

2020-03-11 Thread Emanuel Berg
Jonas Smedegaard wrote: > Try check if the audio stream of that movie is AC-3, and if > so then try use mpv with the option --ad-lavc-ac3drc (read > the man page for valid values). OK, I'll try this... > If you experience similarly expanded dynamic range also for > differently encoded audio sour

Re: normalize audio in mp4s

2020-03-11 Thread Emanuel Berg
deloptes wrote: > why don't you check if you have the right profile selected > (input/output, pulse audio etc) How do you do that? I use mpv $ mpv --version mpv 0.29.1 Copyright © 2000-2018 mpv/MPlayer/mplayer2 projects built on UNKNOWN ffmpeg library versions: libavutil

Re: normalize audio in mp4s

2020-03-11 Thread Emanuel Berg
Reco wrote: > Can you provide an output of (you may need to install ffmpeg > package): > > ffprobe -hide_banner $ ffprobe -hide_banner ford-v-ferrari-2019.mkv Input #0, matroska,webm, from 'ford-v-ferrari-2019.mkv': Metadata: title : Ford.vs.Ferrari.2019.1080p.BRRip.X264.EVO.DUA

Re: normalize audio in mp4s

2020-03-10 Thread David Wright
s4 s8 sb sd2 sds sf sl sln smp snd sndfile sndr sndt sou sox sph sw txw u1 u16 u2 u24 u3 u32 u4 u8 ub ul uw vms voc vorbis vox w64 wav wavpcm wv wve xa xi PLAYLIST FORMATS: m3u pls No mention of mp4a and aac. And I don't see any method for getting at the audio inside its container,

Re: normalize audio in mp4s

2020-03-10 Thread Nicolas George
Reco (12020-03-10): > I disagree. You don't do support on the ffmpeg-user mailing lists. -hide_banner is very annoying there; please don't give bad habits to unsuspecting users. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: normalize audio in mp4s

2020-03-10 Thread Reco
Hi. On Tue, Mar 10, 2020 at 01:06:10PM +0100, Nicolas George wrote: > Reco (12020-03-10): > > ffprobe -hide_banner > > Please don't advise -hide_banner. It makes it harder to notice obvious > issues like bogus or prehistoric versions. I disagree. In this case the problem lies with the f

Re: normalize audio in mp4s

2020-03-10 Thread Nicolas George
Reco (12020-03-10): > ffprobe -hide_banner Please don't advise -hide_banner. It makes it harder to notice obvious issues like bogus or prehistoric versions. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: normalize audio in mp4s

2020-03-10 Thread Jonas Smedegaard
Quoting Emanuel Berg (2020-03-10 09:54:07) > deloptes wrote: > > > but my question here is - why the subject with mp4s - do only > > they suffer this problem or it is just a case among others? > > It is probably a case among others, at least when I wrote it the > intention was to raise this issue

Re: normalize audio in mp4s

2020-03-10 Thread deloptes
Emanuel Berg wrote: > deloptes wrote: > >> but my question here is - why the subject with mp4s - do only >> they suffer this problem or it is just a case among others? > > It is probably a case among others, at least when I wrote it the > intention was to raise this issue in general. > > Today

Re: normalize audio in mp4s

2020-03-10 Thread Reco
Hi. On Tue, Mar 10, 2020 at 09:54:07AM +0100, Emanuel Berg wrote: > deloptes wrote: > > > but my question here is - why the subject with mp4s - do only > > they suffer this problem or it is just a case among others? > > It is probably a case among others, at least when I wrote it the > i

Re: normalize audio in mp4s

2020-03-10 Thread Emanuel Berg
deloptes wrote: > but my question here is - why the subject with mp4s - do only > they suffer this problem or it is just a case among others? It is probably a case among others, at least when I wrote it the intention was to raise this issue in general. Today I saw "Ford v Ferrari" from last year

Re: normalize audio in mp4s

2020-03-10 Thread deloptes
ghe wrote: >> Please note that the subject of this conversation is mp4 (not mp3). > > It's claimed that sox will handle mp4: > > https://stackoverflow.com/questions/2666425/how-to-i-configure-sox-to-work-on-mp4 > > (You do have to install LAME.) > >> If you only process uncompressed audio then

Re: normalize audio in mp4s

2020-03-09 Thread David Wright
On Mon 09 Mar 2020 at 19:38:06 (+0100), Jonas Smedegaard wrote: > All that said, you are of course quite welcome to look at my script, and > even critisize it if you like (no doubt there are things in there worthy > of pointing fingers at). Before I do, I thought I'd try my hand at one myself.

Re: normalize audio in mp4s

2020-03-09 Thread David Wright
On Mon 09 Mar 2020 at 19:38:06 (+0100), Jonas Smedegaard wrote: > Quoting David Wright (2020-03-09 19:08:26) > > On Mon 09 Mar 2020 at 12:26:53 (+0100), Jonas Smedegaard wrote: > > > So if high-quality normalization is not important (and you don't > > > want to try play with stripping my script),

Re: normalize audio in mp4s

2020-03-09 Thread Jonas Smedegaard
Quoting ghe (2020-03-09 21:23:54) > > > Please note that the subject of this conversation is mp4 (not mp3). > > It's claimed that sox will handle mp4: > > https://stackoverflow.com/questions/2666425/how-to-i-configure-sox-to-work-on-mp4 > > (You do have to install LAME.) In Debian, install lib

Re: normalize audio in mp4s

2020-03-09 Thread ghe
> Please note that the subject of this conversation is mp4 (not mp3). It's claimed that sox will handle mp4: https://stackoverflow.com/questions/2666425/how-to-i-configure-sox-to-work-on-mp4 (You do have to install LAME.) > If you only process uncompressed audio then sox is fine. It will do

Re: normalize audio in mp4s

2020-03-09 Thread Jonas Smedegaard
#x27;t have same/similar needs as the OP :-) If you neither have a need for audio-in-movie nor for EBU R-128, then I doubt you'll be excited about melt or my script (even it it also supports modes where it bypasses melt and runs ffmpeg directly). All that said, you are of course quite welcome

Re: normalize audio in mp4s

2020-03-09 Thread David Wright
On Mon 09 Mar 2020 at 12:26:53 (+0100), Jonas Smedegaard wrote: > So if high-quality normalization is not important (and you don't want to > try play with stripping my script), then directly use ffmpeg, or use any > other of the many many many ffmpeg-based tools available. > > ...or use sox (but

Re: normalize audio in mp4s

2020-03-09 Thread Greg Wooledge
On Sat, Mar 07, 2020 at 03:05:27AM +0100, Emanuel Berg wrote: > get-mp3-normalized () { > local -a files > files=($@) > > local dB=-10 # db/LUFS > > for f in $files; do > ffmpeg-normalize -f -c:a libmp3lame -t $dB -ext mp3 $f > done get-mp3-normalized() { local dB

Re: normalize audio in mp4s

2020-03-09 Thread Jonas Smedegaard
Quoting David Wright (2020-03-09 04:15:41) > On Sat 07 Mar 2020 at 12:12:18 (+0100), Jonas Smedegaard wrote: > > Quoting David Wright (2020-03-07 04:56:05) > > > On Fri 06 Mar 2020 at 20:33:48 (+0100), Emanuel Berg wrote: > > > > how can I normalize the audio in

Re: normalize audio in mp4s

2020-03-08 Thread David Wright
On Sat 07 Mar 2020 at 12:12:18 (+0100), Jonas Smedegaard wrote: > Quoting David Wright (2020-03-07 04:56:05) > > On Fri 06 Mar 2020 at 20:33:48 (+0100), Emanuel Berg wrote: > > > how can I normalize the audio in mp4 video files? both WRT not > > > having to lowe

Re: normalize audio in mp4s

2020-03-07 Thread Jonas Smedegaard
Quoting David Wright (2020-03-07 04:56:05) > On Fri 06 Mar 2020 at 20:33:48 (+0100), Emanuel Berg wrote: > > how can I normalize the audio in mp4 video files? both WRT not > > having to lower the volume when there's a firefight and raise it > > when they start talkin

Re: normalize audio in mp4s

2020-03-06 Thread David Wright
On Fri 06 Mar 2020 at 20:33:48 (+0100), Emanuel Berg wrote: > how can I normalize the audio in mp4 video files? both WRT not > having to lower the volume when there's a firefight and raise it > when they start talking again, _and_ WRT playing several files, e.g. > music videos

Re: normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
David Christensen wrote: > It is going to be difficult or impossible to get good results > across many different mp4 files by feeding them all through > a command-line tool with the same set of options. It might be > possible to script a solution that uses command-line tools to > analyze each file

Re: normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
> I tried this but it sounds so bad I even had to put a warning in > a comment I used it the wrong way, one is supposed to experiment with dB/LUFS values for a single problematic file, meanwhile I just injected all my mp3s :$ > # first do: > # $ pip install ffmpeg-normalize > # > # but... don't u

Re: normalize audio in mp4s

2020-03-06 Thread Jonas Smedegaard
Quoting David Christensen (2020-03-07 03:41:22) > On 2020-03-06 18:05, Emanuel Berg wrote: > > > > > Well, it sounds advanced... Yes, its a stereo alright, that much > > I know. > > > > I tried this but it sounds so bad I even had to put a warning in > > a comment: > > > > # first do: > > # $

Re: normalize audio in mp4s

2020-03-06 Thread David Christensen
On 2020-03-06 18:05, Emanuel Berg wrote: Well, it sounds advanced... Yes, its a stereo alright, that much I know. I tried this but it sounds so bad I even had to put a warning in a comment: # first do: # $ pip install ffmpeg-normalize # # but... don't use, at least not with music, sounds ter

Re: normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
David Christensen wrote: > You want audio compression. > > Some media editors, such as Audacity, have compression (and many > other features). > > Some media players, such as VLC, have real-time audio compression > during playback. > > I use Xfce. I do not see a compressor in its PulseAudio > Plug

Re: normalize audio in mp4s

2020-03-06 Thread David Christensen
On 2020-03-06 11:33, Emanuel Berg wrote: how can I normalize the audio in mp4 video files? both WRT not having to lower the volume when there's a firefight and raise it when they start talking again, _and_ WRT playing several files, e.g. music videos, and having them have basically the

normalize audio in mp4s

2020-03-06 Thread Emanuel Berg
how can I normalize the audio in mp4 video files? both WRT not having to lower the volume when there's a firefight and raise it when they start talking again, _and_ WRT playing several files, e.g. music videos, and having them have basically the same volume? if need be, I can set v

Bug regarding audio in "stable" branch

2019-01-06 Thread Jul'
Hello, Sorry to disturb you, but I have a problem regarding audio on Debian 9 stable : - after booting and login in, the default source is not chosen ; therefore no sound is transmitted to the output (you can select again a proper audio source with the GNOME Sound GUI and it will work again aft

[SOLVED] Re: almost no audio in buster/sid

2019-01-02 Thread Lucio
I've found the problem, the solution is here: https://lists.debian.org/debian-user/2018/11/msg00370.html

almost no audio in buster/sid

2018-12-30 Thread Lucio
I run regular updates of my testing/unstable Debian instance, on my Dell Precision M4500 notebook. A few days ago most applications stopped playing sounds, but not all of them. For example Chrome doesn't play sounds, Firefox doesn't, vlc doesn't, xine doesn't, while xboard does, audacity does

Re: no bluetooth audio in jessie

2015-04-14 Thread deloptes
Juha Heinanen wrote: > A few days ago, I upgraded my laptop from wheezy to jessie. After that > I noticed that audio to my bluetooth speaker didn't work anymore. I had > been using alsa audio and had a bluetooth type entry in my .asoundrc for > my speaker. > > After a bit of digging it turned o

no bluetooth audio in jessie

2015-04-13 Thread Juha Heinanen
A few days ago, I upgraded my laptop from wheezy to jessie. After that I noticed that audio to my bluetooth speaker didn't work anymore. I had been using alsa audio and had a bluetooth type entry in my .asoundrc for my speaker. After a bit of digging it turned out that I had lost bluetooth audio

Re: No Flash-based audio in Google Chrome/Chromium with a USB Sound Card

2014-12-05 Thread Pete Orrall
>> Maybe your problem? You might have to revert to a previous version >> (which would involve a manual extraction from an older Chrome package). >> > > Or maybe not because you're talking about audio only--sorry about that. No worries, Curt. It looks like I will be filing a bug report. Thanks fo

Re: No Flash-based audio in Google Chrome/Chromium with a USB Sound Card

2014-12-05 Thread Curt
On 2014-12-05, Curt wrote: > On 2014-12-05, Pete Orrall wrote: >> Hi All, >> >> I am apologizing for the long post now. I installed Wheezy a couple >> weeks ago on my workstation and things are fantasticwith the >> exception of a Flash-based audio problem: I don't have audio from any >> Flas

Re: No Flash-based audio in Google Chrome/Chromium with a USB Sound Card

2014-12-05 Thread Curt
On 2014-12-05, Pete Orrall wrote: > Hi All, > > I am apologizing for the long post now. I installed Wheezy a couple > weeks ago on my workstation and things are fantasticwith the > exception of a Flash-based audio problem: I don't have audio from any > Flash-based media (Youtube, Vimeo, or ot

No Flash-based audio in Google Chrome/Chromium with a USB Sound Card

2014-12-05 Thread Pete Orrall
Hi All, I am apologizing for the long post now. I installed Wheezy a couple weeks ago on my workstation and things are fantasticwith the exception of a Flash-based audio problem: I don't have audio from any Flash-based media (Youtube, Vimeo, or otherwise) in either Google Chrome or Chromium.

Re: no audio in hp dm1 3080la laptop

2012-01-22 Thread Fernando Gadea
Hi Cleopatra, and thank you for your answer. I partially solved the problem, but did not post that I did because I still have some weird behaviour. The solution to my wifi problem I told Ralf apparently solved something in my audio devices too, as if I open video or audio files from vlc the sound c

Re: no audio in hp dm1 3080la laptop

2012-01-22 Thread Ralf Madorf
Hi Fernando :) http://lists.linuxaudio.org/listinfo/linux-audio-user . Hth, Ralf -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1327252413.7752.2.camel@localhost

Re: no audio in hp dm1 3080la laptop

2012-01-22 Thread Fernando Gadea
Thank you Ralf, I will sign in that list too. By the way, I solved in this very moment my wifi problem with this link (just in case there is another hp dm1 debian user here): http://www.taringa.net/posts/linux/12431283/Driver-Ralink-RT5390-en-ubuntu-11_04.html Cheers, Fernando 2012/1/22, Ralf Ma

no audio in hp dm1 3080la laptop

2012-01-22 Thread Fernando Gadea
Hi list, I am a new Debian user. I installed squeezy three days ago, having several hardware problems, one of which was wifi, and folks from the laptop debian list helped me still with no solution, one of the facts related was migrating to backports kernel. Sound hasn't worked since the first Debia

Re: no audio in microphone-SOLVED-then broke

2011-02-03 Thread Paul Cartwright
On 02/03/2011 04:06 PM, Paul Cartwright wrote: I did NOT have gnome-alsamixer installed. My speaker has always worked, I listen to audio from internet radio all the time & watch videos & stuff. I just never had a need to setup the microphone. So I installed gnome-alsamixer & ran alsamixer from

Re: no audio in microphone-SOLVED

2011-02-03 Thread Paul Cartwright
On 02/03/2011 02:55 PM, Martin Kraus wrote: I have also installed& when I bring up alsamixergui it has sliders > for Master, PCM,Front, Surround, Center, LFE, Side, IEX958, IEC958 > Default PCM, Capture, Capture1, Capture 2, Analog loop, Digital, > Input source1, Input source2, Mux, Mux1, Mux

Re: no audio in microphone

2011-02-03 Thread Martin Kraus
On Thu, Feb 03, 2011 at 02:42:29PM -0500, Paul Cartwright wrote: > I have also installed & when I bring up alsamixergui it has sliders > for Master, PCM,Front, Surround, Center, LFE, Side, IEX958, IEC958 > Default PCM, Capture, Capture1, Capture 2, Analog loop, Digital, > Input source1, Input sourc

Re: no audio in microphone

2011-02-03 Thread Volkan YAZICI
First, try recording with "arecord -V". ("-V" param will provide you a VU-meter.) Second, play with the mic settings in "alsamixer" interface. On Thu, 03 Feb 2011 14:42:29 -0500, Paul Cartwright writes: > I am trying to setup skype. I got a nice new logitech C200 web cam & the video > works now. B

no audio in microphone

2011-02-03 Thread Paul Cartwright
I am trying to setup skype. I got a nice new logitech C200 web cam & the video works now. But I've tried plugging 2 different microphones in, to the front & back panels of the desktop with no audio output. I hear the skype voice, but not mine.. lspci shows: 00:1f.5 Multimedia audio controller:

Figured it out: Re: What happened to 'permissions.rules?' [Re: Why does /dev/rtc0 belong to group audio in Lenny but not in Sid?]

2010-05-12 Thread Rick Thomas
I figured it out myself... Most of the /etc/udev/rules.d/*.rules files seem to have moved to /lib in Sid. Sorry for the noise... Rick On May 12, 2010, at 10:43 AM, Rick Thomas wrote: Thanks, that answers the immediate question. Which rises the larger question... Sid does not seem to

Re: What happened to 'permissions.rules?' [Re: Why does /dev/rtc0 belong to group audio in Lenny but not in Sid?]

2010-05-12 Thread Sven Joachim
On 2010-05-12 16:43 +0200, Rick Thomas wrote: > Sid does not seem to have anything that corresponds to Lenny's /etc/ > udev/rules.d/*permissions.rules > > Any idea why? Any idea what has replaced it. Read /usr/share/doc/udev/NEWS.Debian.gz. Sven -- To UNSUBSCRIBE, email to debian-user-requ..

What happened to 'permissions.rules?' [Re: Why does /dev/rtc0 belong to group audio in Lenny but not in Sid?]

2010-05-12 Thread Rick Thomas
Thanks, that answers the immediate question. Which rises the larger question... Sid does not seem to have anything that corresponds to Lenny's /etc/ udev/rules.d/*permissions.rules Any idea why? Any idea what has replaced it. Rick On May 12, 2010, at 4:32 AM, Sven Joachim wrote: On 201

Re: Why does /dev/rtc0 belong to group audio in Lenny but not in Sid?

2010-05-12 Thread Sven Joachim
On 2010-05-12 10:06 +0200, Rick Thomas wrote: > In Lenny, "ls -ld /dev/audio" gives > >> lenny:~$ ls -ld /dev/rtc0 >> crw-rw 1 root audio 254, 0 May 2 15:25 /dev/rtc0 Ugh. This is not really desirable. > But in Sid, it gives > >> sid:~$ ls -ld /dev/rtc0 >> crw-rw 1 root root 254, 0 May

Why does /dev/rtc0 belong to group audio in Lenny but not in Sid?

2010-05-12 Thread Rick Thomas
In Lenny, "ls -ld /dev/audio" gives lenny:~$ ls -ld /dev/rtc0 crw-rw 1 root audio 254, 0 May 2 15:25 /dev/rtc0 But in Sid, it gives sid:~$ ls -ld /dev/rtc0 crw-rw 1 root root 254, 0 May 10 23:51 /dev/rtc0 Anybody know why? Thanks! Rick -- To UNSUBSCRIBE, email to debian-use

Re: no more audio in totem in sid

2009-09-30 Thread Leonardo Canducci
2009/9/30 Tim Tebbit : > Leonardo Canducci wrote: >> Since I upgraded totem to version 2.28 I can't here audio anymore. >> Audio control is grayed out. Other media player (vlc, rhythmbox) work >> fine. I'm using alsa (no esd or pulse). There are no bugreports about >> that. Could someone confirm th

Re: no more audio in totem in sid

2009-09-30 Thread Tim Tebbit
Leonardo Canducci wrote: > Since I upgraded totem to version 2.28 I can't here audio anymore. > Audio control is grayed out. Other media player (vlc, rhythmbox) work > fine. I'm using alsa (no esd or pulse). There are no bugreports about > that. Could someone confirm that problem? > Thanks +1 here

no more audio in totem in sid

2009-09-30 Thread Leonardo Canducci
Since I upgraded totem to version 2.28 I can't here audio anymore. Audio control is grayed out. Other media player (vlc, rhythmbox) work fine. I'm using alsa (no esd or pulse). There are no bugreports about that. Could someone confirm that problem? Thanks -- Leonardo Canducci -- To UNSUBSCRIBE,

Re: Problem trying to reproduce audio in KDE

2009-05-13 Thread Florian Kulzer
On Mon, May 11, 2009 at 07:15:28 -0300, Daniel Bareiro wrote: > Hi all! > > Using Twinkle 1.4.2, Just to make sure: Is this the official Debian package from the Squeeze or Sid branch? > when trying to establish a connection against the > Asterisk server I obtain the followin

Problem trying to reproduce audio in KDE

2009-05-11 Thread Daniel Bareiro
Hi all! Using Twinkle 1.4.2, when trying to establish a connection against the Asterisk server I obtain the following error message: "Critical: Cannot open ALSA driver for PCM playback: Device or resource busy". Audio config for Twinkle is: Ring tone: ALSA: plughw:0,0: ICEnsemble ICE1724 (ICE1

AHS302usb, USB audio in Etch

2006-05-04 Thread petereasthope
There is an Altec AHS302usb headset here which I want to use with Skype in Etch. modconf refuses to install /kernel/drivers/usb/audio and alsaconf reports thus. modinfo: snd: no module by that name found. Unloading sound driver modules: (none loaded). Can anyone offer a hint or two to resolve

Re: Using mplayer save RealMedia audio in a sensible format?

2004-10-01 Thread Alex Polite
On Thu, Sep 30, 2004 at 06:22:09PM +, Adam Funk wrote: > Sorry: I'm sure I've most of the man mplayer page a few times and I > still can't figure out how to do this. I want to convert a RealPlayer > URL stream into a file in some sensible (e.g. WAV, Ogg, MP3) audio > format. > > I started wit

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Carl Fink
On Thu, Sep 30, 2004 at 11:53:22PM +0200, Olav Lavell wrote: > Because the -dumpstream option just writes to disk what it gets from the > network? I think it just doesn't do any conversion at all. Which is fine > by me, because I like to store RealAudio and RealVideo streams in their > native form

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Olav Lavell
Op do 30-09-2004, om 22:01 schreef Adam Funk: > I'm still curious, however. Why does mplayer record to a RealAudio > file, which is not a useful format? Because the -dumpstream option just writes to disk what it gets from the network? I think it just doesn't do any conversion at all. Which is fi

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Travis Crump
Adam Funk wrote: On Thursday 30 September 2004 19:50, Adam Funk wrote: Sorry: I'm sure I've most of the man mplayer page a few times and I still can't figure out how to do this. I want to convert a RealPlayer URL stream into a file in some sensible (e.g. WAV, Ogg, MP3) audio format. I started wit

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Adam Funk
On Thursday 30 September 2004 20:20, Kevin Mark wrote: > recently I wanted to timeshift the new HHG realaudio stream. after > googling, I found VSOUND. > app->VSOUND->/dev/dsp > at least for audio, this works. I tried that, because "vsound --timing -f foo.wav realplay URL" works with RealPlayer.

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Adam Funk
On Thursday 30 September 2004 19:50, Adam Funk wrote: > Sorry: I'm sure I've most of the man mplayer page a few times and I > still can't figure out how to do this. I want to convert a RealPlayer > URL stream into a file in some sensible (e.g. WAV, Ogg, MP3) audio > format. > > I started with th

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Olav Lavell
Op do 30-09-2004, om 20:22 schreef Adam Funk: > Sorry: I'm sure I've most of the man mplayer page a few times and I > still can't figure out how to do this. I want to convert a RealPlayer > URL stream into a file in some sensible (e.g. WAV, Ogg, MP3) audio > format. > > I started with this: >

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Carl Fink
On Thu, Sep 30, 2004 at 03:01:37PM -0400, Kevin Mark wrote: > > Sorry: I'm sure I've most of the man mplayer page a few times and I > > still can't figure out how to do this. I want to convert a RealPlayer > > URL stream into a file in some sensible (e.g. WAV, Ogg, MP3) audio > > format. > > > >

Re: Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Kevin Mark
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, Sep 30, 2004 at 06:22:09PM +, Adam Funk wrote: > Sorry: I'm sure I've most of the man mplayer page a few times and I > still can't figure out how to do this. I want to convert a RealPlayer > URL stream into a file in some sensible (e.g. WA

Using mplayer save RealMedia audio in a sensible format?

2004-09-30 Thread Adam Funk
Sorry: I'm sure I've most of the man mplayer page a few times and I still can't figure out how to do this. I want to convert a RealPlayer URL stream into a file in some sensible (e.g. WAV, Ogg, MP3) audio format. I started with this: mplayer -dumpfile foo.wav -dumpstream rtsp://ra but foo.w

audio in cdplay and audacity not working but ok in play and xmms

2003-02-10 Thread Tim
Hi, I can't play audio using cdplay or audacity. xmms and command-line play work as per normal. cdir works as per normal. This is a new computer, fresh install. I am added to 'audio' group. cdplay gives the following message: cdplay: ioctl cdrommsf audacity starts but gives: Audio I/O erro

Re: audio in

2000-11-08 Thread csj
On Mon, 06 Nov 2000, Debian Ghost wrote: > Hey Guys, > Is there a program that will capture audio in? I want to record some sound > bytes. > > Thanks, > > D. Ghost! No bloat no nonsense software: wavrec. See the output below. You might have to compile the program yourse

Re: audio in

2000-11-07 Thread Philipp Schulte
On Sun, Nov 05, 2000 at 03:54:30PM -0500, Debian Ghost wrote: > Is there a program that will capture audio in? I want to record some sound > bytes. Well, I can use my audio-in without any additional software. I have a Soundlbaster 1024 and use it with Alsa. If I set the "Capture"

Re: audio in

2000-11-06 Thread Stuart Ballard
Carel Fellinger wrote: > > On Sun, Nov 05, 2000 at 03:54:30PM -0500, Debian Ghost wrote: > > Hey Guys, > > Is there a program that will capture audio in? I want to record some sound > > bytes. > > e.g. the audio/bplay package For GNOME, there is a package called

Re: audio in

2000-11-06 Thread Carel Fellinger
On Sun, Nov 05, 2000 at 03:54:30PM -0500, Debian Ghost wrote: > Hey Guys, > Is there a program that will capture audio in? I want to record some sound > bytes. e.g. the audio/bplay package -- groetjes, carel

Audio IN ? --> "Is this mic on?"

2000-11-06 Thread Debian Ghost
Hello Debianers, I have been wondering what sort of program I can use that would allow recording audio in (to .wav or something similar) ? I currently use xmms for audio out. Now I need the counter part. ANY suggestions welcome! Thanks a lot! Debian Ghost. 'space ghost in a forrest'

audio in

2000-11-05 Thread Debian Ghost
Hey Guys, Is there a program that will capture audio in? I want to record some sound bytes. Thanks, D. Ghost!

[slightly OFF TOPIC] digital audio in linux?

1998-09-17 Thread E.L. Meijer \(Eric\)
Hi, Suppose I want to do the following: 1) record music with my audio DAT-recorder 2) transfer it _digitally_ to the hard disk of a debian box 3) burn audio CD's of it I know how to do 1) and 3). Does anyone know what hardware/software combo would enable me to perform step 2)? Eric -- E.L.