All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] problem w/ arecord "split interleaved files" feature
@ 2006-04-25  5:43 Dave Maley
  2006-04-25 14:38 ` Takashi Iwai
  0 siblings, 1 reply; 6+ messages in thread
From: Dave Maley @ 2006-04-25  5:43 UTC (permalink / raw)
  To: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 1424 bytes --]

Hello,

My first post to the alsa-devel list, and I'm not subscribed so please
cc: me directly on any responses ...  This is in reference to a patch
which was incorporated into alsa-utils-1.0.11, originally posted here:

http://thread.gmane.org/gmane.linux.alsa.devel/29025/focus=29098

The max_filesize for wave files as currently implemented it's actually
splitting files a good bit before reaching 2GB.

A little background as to why this matters (to me at least).  I use
arecord to transfer DAT's to my computer, and many of these DAT's are 3
hours in length.  So for this I'd typically do something to the effect
of:


[dave@flanders ~]$ arecord -t wav -f dat -d 10800 foo.wav


Since max_filesize is set to 2000000000 arecord splits the resulting
file a bit over 170 minutes.  Not a huge problem, except I pipe the
above command to sox for down-sampling to 44.1KHz:


[dave@flanders ~]$ arecord -q -t wav -f dat -d 10800 | sox -t wav -r
48000 -c 2 - -t wav -r 44100 -c 2 foo.wav resample


It seems this new split feature doesn't work properly when writing to a
pipe (or at least when piping to sox).  A quick look at an strace shows
constant write errors, and foo.wav grows in size until the disk is full.

A quick fix for this is to set max_filesize to 2147483648.  Not sure if
this is a "proper" fix however I have tested it and it seems to work
just fine for me.  Please consider the attached patch.

Thanks,
Dave

[-- Attachment #2: arecord_split.patch --]
[-- Type: text/x-patch, Size: 456 bytes --]

--- alsa-utils-1.0.11/aplay/aplay.c.orig	2006-04-25 01:37:13.000000000 -0400
+++ alsa-utils-1.0.11/aplay/aplay.c	2006-04-25 01:38:24.000000000 -0400
@@ -128,7 +128,7 @@
 } fmt_rec_table[] = {
 	{	NULL,		end_raw,	N_("raw data"),		LLONG_MAX },
 	{	begin_voc,	end_voc,	N_("VOC"),		16000000 },
-	{	begin_wave,	end_wave,	N_("WAVE"),		2000000000 },
+	{	begin_wave,	end_wave,	N_("WAVE"),		2147483648 },
 	{	begin_au,	end_au,		N_("Sparc Audio"),	LLONG_MAX }
 };
 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-04-30 17:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-25  5:43 [patch] problem w/ arecord "split interleaved files" feature Dave Maley
2006-04-25 14:38 ` Takashi Iwai
2006-04-25 21:07   ` Dave Maley
2006-04-26 14:11     ` Takashi Iwai
2006-04-26 21:56       ` Dave Maley
2006-04-30 17:03       ` Dave Maley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.