ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] audio2midi converter
@ 2005-10-03  7:45 Alexey V. Novikov
  2005-10-03  7:56 ` Olvin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey V. Novikov @ 2005-10-03  7:45 UTC (permalink / raw)
  To: ALT Linux Community

Привет всем!

После безуспешных поисков нормальной open-source проги
для конвертации звука в миди, решил написать сам. :)
Работает она еще бог знает как, но если кому интересно,
то посмотреть можно:
http://alex-novikov.narod.ru/projects/snd2mid/snd2mid-0.1.tar.bz2
Собирается как под linux(проверял под ALM24), так и под оффтопик.
Если кто-то из спецов по DSP заинтересуется, то можно будет
допилить до приемлемого состояния.

-- 
WBR, Alexey V. Novikov



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

* Re: [Comm] audio2midi converter
  2005-10-03  7:45 [Comm] audio2midi converter Alexey V. Novikov
@ 2005-10-03  7:56 ` Olvin
  2005-10-03  8:16   ` Alexey V. Novikov
  0 siblings, 1 reply; 5+ messages in thread
From: Olvin @ 2005-10-03  7:56 UTC (permalink / raw)
  To: ALT Linux Community

Alexey V. Novikov wrote:
> После безуспешных поисков нормальной open-source проги
> для конвертации звука в миди, решил написать сам. :)
> Работает она еще бог знает как, но если кому интересно,
> то посмотреть можно:
> http://alex-novikov.narod.ru/projects/snd2mid/snd2mid-0.1.tar.bz2
> Собирается как под linux(проверял под ALM24), так и под оффтопик.
> Если кто-то из спецов по DSP заинтересуется, то можно будет
> допилить до приемлемого состояния.

[testu@enigma snd2mid-0.1]$ make
gcc -s -c -o snd2mid.o -Wall -O3 -march=i586 -mcpu=i686 -ffast-math 
snd2mid.c
snd2mid.c: In function `midiwritechannel':
snd2mid.c:134: syntax error before `int'
snd2mid.c:138: `maxi' undeclared (first use in this function)
snd2mid.c:138: (Each undeclared identifier is reported only once
snd2mid.c:138: for each function it appears in.)
snd2mid.c:143: `maxi_old' undeclared (first use in this function)
snd2mid.c:146: `delta' undeclared (first use in this function)
snd2mid.c: In function `init_hamming':
snd2mid.c:377: syntax error before `int'
snd2mid.c:378: `i' undeclared (first use in this function)
snd2mid.c: In function `main_loop':
snd2mid.c:407: syntax error before `int'
snd2mid.c:408: `ch' undeclared (first use in this function)
snd2mid.c:412: `channel_len' undeclared (first use in this function)
snd2mid.c: In function `main':
snd2mid.c:482: syntax error before `*'
snd2mid.c:483: `sndfile' undeclared (first use in this function)
snd2mid.c:502: syntax error before `int'
snd2mid.c:503: `channel' undeclared (first use in this function)
make: *** [snd2mid.o] Ошибка 1


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

* Re: [Comm] audio2midi converter
  2005-10-03  7:56 ` Olvin
@ 2005-10-03  8:16   ` Alexey V. Novikov
  2005-10-03  8:35     ` Olvin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey V. Novikov @ 2005-10-03  8:16 UTC (permalink / raw)
  To: ALT Linux Community

03.10.2005 11:56, Olvin пишет:
> [testu@enigma snd2mid-0.1]$ make
> gcc -s -c -o snd2mid.o -Wall -O3 -march=i586 -mcpu=i686 -ffast-math 
> snd2mid.c
> snd2mid.c: In function `midiwritechannel':
> snd2mid.c:134: syntax error before `int'
> snd2mid.c:138: `maxi' undeclared (first use in this function)
> snd2mid.c:138: (Each undeclared identifier is reported only once
> snd2mid.c:138: for each function it appears in.)
> snd2mid.c:143: `maxi_old' undeclared (first use in this function)
> snd2mid.c:146: `delta' undeclared (first use in this function)
> snd2mid.c: In function `init_hamming':
> snd2mid.c:377: syntax error before `int'
> snd2mid.c:378: `i' undeclared (first use in this function)
> snd2mid.c: In function `main_loop':
> snd2mid.c:407: syntax error before `int'
> snd2mid.c:408: `ch' undeclared (first use in this function)
> snd2mid.c:412: `channel_len' undeclared (first use in this function)
> snd2mid.c: In function `main':
> snd2mid.c:482: syntax error before `*'
> snd2mid.c:483: `sndfile' undeclared (first use in this function)
> snd2mid.c:502: syntax error before `int'
> snd2mid.c:503: `channel' undeclared (first use in this function)
> make: *** [snd2mid.o] Ошибка 1
А gcc --version случаем не 2.96?

sudo apt-get install gcc3.3
sudo select-gcc 3.3

-- 
WBR, Alexey V. Novikov


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

* Re: [Comm] audio2midi converter
  2005-10-03  8:16   ` Alexey V. Novikov
@ 2005-10-03  8:35     ` Olvin
  2005-10-03  8:40       ` Alexey V. Novikov
  0 siblings, 1 reply; 5+ messages in thread
From: Olvin @ 2005-10-03  8:35 UTC (permalink / raw)
  To: ALT Linux Community

Alexey V. Novikov wrote:
>> [testu@enigma snd2mid-0.1]$ make
>> gcc -s -c -o snd2mid.o -Wall -O3 -march=i586 -mcpu=i686 -ffast-math 
>> snd2mid.c
>> snd2mid.c: In function `midiwritechannel':

[skip]

>> make: *** [snd2mid.o] Ошибка 1
> А gcc --version случаем не 2.96?
> sudo apt-get install gcc3.3
> sudo select-gcc 3.3

Ага. Только warnings там... :(


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

* Re: [Comm] audio2midi converter
  2005-10-03  8:35     ` Olvin
@ 2005-10-03  8:40       ` Alexey V. Novikov
  0 siblings, 0 replies; 5+ messages in thread
From: Alexey V. Novikov @ 2005-10-03  8:40 UTC (permalink / raw)
  To: ALT Linux Community

03.10.2005 12:35, Olvin пишет:
> Alexey V. Novikov wrote:
> 
>>> [testu@enigma snd2mid-0.1]$ make
>>> gcc -s -c -o snd2mid.o -Wall -O3 -march=i586 -mcpu=i686 -ffast-math 
>>> snd2mid.c
>>> snd2mid.c: In function `midiwritechannel':
> 
> 
> [skip]
> 
>>> make: *** [snd2mid.o] Ошибка 1
>>
>> А gcc --version случаем не 2.96?
>> sudo apt-get install gcc3.3
>> sudo select-gcc 3.3
> 
> 
> Ага. Только warnings там... :(
Warnings это в midifile, этот код не мой.:)
Если warnings в snd2mid.c это ко мне, покажите - исправлю.

-- 
WBR, Alexey V. Novikov


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

end of thread, other threads:[~2005-10-03  8:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-03  7:45 [Comm] audio2midi converter Alexey V. Novikov
2005-10-03  7:56 ` Olvin
2005-10-03  8:16   ` Alexey V. Novikov
2005-10-03  8:35     ` Olvin
2005-10-03  8:40       ` Alexey V. Novikov

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git