[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Syntax issue with converting over from wavwrite to audiowrite
From: |
Sergei Steshenko |
Subject: |
Re: Syntax issue with converting over from wavwrite to audiowrite |
Date: |
Tue, 3 May 2016 21:00:59 +0000 (UTC) |
>________________________________
> From: RT <address@hidden>
>To: "address@hidden" <address@hidden>
>Sent: Tuesday, May 3, 2016 3:25 PM
>Subject: Syntax issue with converting over from wavwrite to audiowrite
>
>
>
>
>
>In Octave 3.8.1 I'm able to export a stereo wave file using the command below
>wavwrite([w1(:) w2(:)],44100,16,'/tmp/testfile.wav');
>
>I'm trying to get it to work with audiowrite using octave 4.0 see below but I
>get a audiowrite: wrong argument name
>
>audiowrite('/tmp/testfile2.wav',[w1(:) w2(:) w3(:) w4(:)],44100,16)
>
>and
>audiowrite('/tmp/testfile2.flac',[w1(:) w2(:) w3(:) w4(:)],44100,16)
>
>
>It says audiowrite can have up to 256 channels am I incorrect about this?
>
>
>Thanks
>
>_______________________________________________
>Help-octave mailing list
>address@hidden
>https://lists.gnu.org/mailman/listinfo/help-octave
>
>
>
For 'wavwrite' it says:
"
Each column of the data represents a
separate channel.
".
Is it so that octave-4.0.0 doesn't have 'wavwrite' ?
--Sergei.