[Subject Prev][Subject Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hts-users:02703] Re: SoxOption bug in demos


Hi,

Thank you.
It slipped my mind

Please, modify as follows

[before]
soxversion=`head -1 sox.option | awk '{printf "%d\n",$NF}'`
[after]
soxversion=`head -1 sox.option | sed -e s/v//g | awk '{printf "%d\n",$NF}'`

Regards,
Keiichiro Oura


2011/1/20 Eric Kang <kangshiyin@xxxxxxxxx>:
> Hi,
>
> This bug still exists in
> official-demos-hts-2.2alpha/HTS-demo_CMU-ARCTIC-ADAPT
>
> Rgds,
>
> Eric
>
> 2010/5/17 Keiichiro Oura <uratec@xxxxxxxxxxxxxxx>
>>
>> Hi,
>>
>> Thank you for your report.
>>
>> Regards,
>> Keiichiro Oura
>>
>> 2010/5/15 康世胤 <kangshiyin@xxxxxxxxx>:
>> > I found a bug in HTS-demo_CMU-ARCTIC-SLT/configure.ac line 298.
>> >
>> > # sox option
>> > sox -h > sox.option 2>&1
>> > soxversion=`head -1 sox.option | awk '{printf "%d\n",$NF}'`
>> > if test $soxversion -gt 13; then
>> >     SOXOPTION=2
>> > else
>> >     SOXOPTION=w
>> > fi
>> > rm -f sox.option
>> > AC_SUBST(SOXOPTION)
>> >
>> >
>> > $soxversion always equals to 0, so $SOXOPTION is always 'w'.
>> >
>> > I use ubuntu 10.04 & sox 14.3.0
>> > Here is the 1st line of my sox.option:
>> >
>> > $ head -1 sox.option
>> > sox: SoX v14.3.0
>> >
>> > Similar bugs exist in other demos too.
>> >
>> > --
>> > 康世胤
>> > Shiyin Kang
>> >
>>
>>
>
>
>
> --
> Eric Shiyin Kang
> 康世胤
>
>

References
[hts-users:02700] Re: SoxOption bug in demos, Eric Kang