ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Re: Набор .wma -> mp3
  2003-09-04 14:37 [Comm] Набор .wma -> mp3 Oleg Dolgov
@ 2003-09-04 11:44 ` Sergey Vlasov
  2003-09-04 11:44 ` [Comm] " Alexey I. Froloff
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Sergey Vlasov @ 2003-09-04 11:44 UTC (permalink / raw)
  To: community

On Thu, 4 Sep 2003 14:37:57 +0000
Oleg Dolgov <dov@media-link.info> wrote:

> Помогите плз. Как с помощью for конвертануть все wma файлы в директории
> в mp3. По одному получается, а командой for что-то не выходит.
> Проблема в том, что в именах присетствует пробел.
> 
> $ for i in *.wma; do mplayer -ao pcm $i || lame -b 128 audiodump.wav
> $i.mp3 ; done 

Надо писать "$i" вместо $i, чтобы shell не разделял значение на слова.


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

* Re: [Comm] Набор .wma -> mp3
  2003-09-04 14:37 [Comm] Набор .wma -> mp3 Oleg Dolgov
  2003-09-04 11:44 ` [Comm] " Sergey Vlasov
@ 2003-09-04 11:44 ` Alexey I. Froloff
  2003-09-04 15:31   ` Oleg Dolgov
  2003-09-09 12:09   ` [Comm] " Michael Shigorin
  2003-09-04 12:11 ` [Comm] " Mike Lykov
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 13+ messages in thread
From: Alexey I. Froloff @ 2003-09-04 11:44 UTC (permalink / raw)
  To: Community

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

* Oleg Dolgov <dov@media-link.info> [030904 15:41]:
> $ for i in *.wma; do mplayer -ao pcm $i || lame -b 128 audiodump.wav
> $i.mp3 ; done 

$ for i in *.wma; do mplayer -ao pcm "$i" || lame -b 128 audiodump.wav "$i.mp3" ; done 

-- 
Regards, Sir Raorn.
-------------------
Конечно, можно сделать fork+pipe, но это уже совсем другая история.
		-- ldv in devel@

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: [Comm] Набор .wma -> mp3
  2003-09-04 14:37 [Comm] Набор .wma -> mp3 Oleg Dolgov
  2003-09-04 11:44 ` [Comm] " Sergey Vlasov
  2003-09-04 11:44 ` [Comm] " Alexey I. Froloff
@ 2003-09-04 12:11 ` Mike Lykov
  2003-09-04 14:14 ` TaZZ
  2003-09-04 15:03 ` Oleg Dolgov
  4 siblings, 0 replies; 13+ messages in thread
From: Mike Lykov @ 2003-09-04 12:11 UTC (permalink / raw)
  To: community

В сообщении от Четверг 04 Сентябрь 2003 19:37 Oleg Dolgov написал:

> Помогите плз. Как с помощью for конвертануть все wma файлы в директории
> в mp3. По одному получается, а командой for что-то не выходит.


в свете того, что Thomson теперь за mp3 хочет денег брать, советую гнать в ogg

http://www.mp3licensing.com/royalty/index.html

(oggenc)

-- 
Mike
registered linux user #315334
jabber id: combr@jabber.ru


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

* Re: [Comm] Набор .wma -> mp3
  2003-09-04 15:03 ` Oleg Dolgov
@ 2003-09-04 12:18   ` ipAlex
  2003-09-04 13:19     ` [Comm] " Alexey Tourbin
  0 siblings, 1 reply; 13+ messages in thread
From: ipAlex @ 2003-09-04 12:18 UTC (permalink / raw)
  To: community

В сообщении от 4 Сентябрь 2003 18:03 Oleg Dolgov написал(a):
> > $ for i in *.wma; do mplayer -ao pcm $i || lame -b 128 audiodump.wav
> > $i.mp3 ; done
>
> Вопрос перефразируется.
> $for i in '*.wma' ; ...
> MPlayer свое дело делает, а вот lame выдает:
>
> Can't init outfile '*.wma.mp3'
>
> Что не так. Почему $i не доживает до вормирования имени файла?
> Попробовал вместо || подставить просто ;
> Результат тот-же.

я думаю правильнее так:
for i in `ls *.wma`; do
         ^^^^^^^^^^
  mplayer -ao pcm "$i" || lame -b 128 audiodump.wav "$i.mp3"
done

-- 
Наилучшие пожелания,                      Registered         .--.
Пирогов Алексей                       Linux User #293162    |@_@ |
mailto:ipalex@ukr.net                                       |!_/ |
mailto:ipalex@ferplast.com.ua                              //   \ \
(AlekseyPirogov@ferplast.com.ua)                          (|     | )
UIN:172368093                                            /'\_   _/`\
                                       Powered by Linux  \___)=(___/

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

* [Comm] Re: Набор .wma -> mp3
  2003-09-04 12:18   ` ipAlex
@ 2003-09-04 13:19     ` Alexey Tourbin
  2003-09-04 13:48       ` ipAlex
  0 siblings, 1 reply; 13+ messages in thread
From: Alexey Tourbin @ 2003-09-04 13:19 UTC (permalink / raw)
  To: community

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

On Thu, Sep 04, 2003 at 03:18:09PM +0300, ipAlex wrote:
> я думаю правильнее так:
> for i in `ls *.wma`; do
>          ^^^^^^^^^^

А разница?

>   mplayer -ao pcm "$i" || lame -b 128 audiodump.wav "$i.mp3"
> done

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: [Comm] Re: Набор .wma -> mp3
  2003-09-04 13:19     ` [Comm] " Alexey Tourbin
@ 2003-09-04 13:48       ` ipAlex
  2003-09-04 14:55         ` Alexey Tourbin
  0 siblings, 1 reply; 13+ messages in thread
From: ipAlex @ 2003-09-04 13:48 UTC (permalink / raw)
  To: community

В сообщении от 4 Сентябрь 2003 16:19 Alexey Tourbin написал(a):
> On Thu, Sep 04, 2003 at 03:18:09PM +0300, ipAlex wrote:
> > я думаю правильнее так:
> > for i in `ls *.wma`; do
> >          ^^^^^^^^^^
>
> А разница?

по поводу правильнее я не прав, прошу прощения
а вот разница точно есть:

1) for i in `ls *.ext`; do echo "$i"; done
file
1.ext
file
2.ext
file
3.ext

2) for i in *.ext; do echo "$i"; done
file 1.ext
file 2.ext
file 3.ext

-- 
Наилучшие пожелания,                      Registered         .--.
Пирогов Алексей                       Linux User #293162    |@_@ |
mailto:ipalex@ukr.net                                       |!_/ |
mailto:ipalex@ferplast.com.ua                              //   \ \
(AlekseyPirogov@ferplast.com.ua)                          (|     | )
UIN:172368093                                            /'\_   _/`\
                                       Powered by Linux  \___)=(___/

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

* Re: [Comm] Набор .wma -> mp3
  2003-09-04 14:37 [Comm] Набор .wma -> mp3 Oleg Dolgov
                   ` (2 preceding siblings ...)
  2003-09-04 12:11 ` [Comm] " Mike Lykov
@ 2003-09-04 14:14 ` TaZZ
  2003-09-04 15:03 ` Oleg Dolgov
  4 siblings, 0 replies; 13+ messages in thread
From: TaZZ @ 2003-09-04 14:14 UTC (permalink / raw)
  To: Oleg Dolgov; +Cc: Community

On Thu, Sep 04, 2003 at 02:37:57PM +0000, Oleg Dolgov wrote:
> Здравствуйте.
> 
> Помогите плз. Как с помощью for конвертануть все wma файлы в директории
> в mp3. По одному получается, а командой for что-то не выходит.
> Проблема в том, что в именах присетствует пробел.
> 
> $ for i in *.wma; do mplayer -ao pcm $i || lame -b 128 audiodump.wav
> $i.mp3 ; done 
> Using GNU internationalization
> Original domain: messages
> Original dirname: /usr/share/locale
> Current domain: mplayer
> Current dirname: /usr/share/locale
> 
> 
> MPlayer 0.90rc3-2.95.3 (C) 2000-2003 Arpad Gereoffy (see DOCS)
> 
> CPU: Intel Celeron A Mendocino/Pentium II Dixon (Family: 6, Stepping: 5)
> 
> //skip
> 
> Playing Запись
> File not found: 'Запись'
> 
> 
> Playing 10.wma
> File not found: '10.wma'
> 
> Если по одному прогонять
> 
> mplayer -ao pcm Запись 1.wma || lame -b 128 audiodump.wav
> Запись 1.mp3
> 
> То все получается.

У меня тоже завалялись wma, хочу их в МП3 перекинуть пишу:

[taw@localhost taw]$ sudo mplayer -ao pcm seti.wma || lame -b 128
audiodump.wav seti.mp3
Using GNU internationalization
Original domain: messages
Original dirname: /usr/share/locale
Current domain: mplayer
Current dirname: /usr/share/locale


MPlayer 0.90rc3-2.95.3 (C) 2000-2003 Arpad Gereoffy (see DOCS)

CPU: Intel  (Family: 8, Stepping: 4)
Detected cache-line size is 64 bytes
MMX2 supported but disabled
SSE supported but disabled
CPUflags:  MMX: 1 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 1
Compiled with Runtime CPU Detection - WARNING - this is not optimal!
To get best performance, recompile MPlayer with
--disable-runtime-cpudetection
Reading config file /etc/MPlayer/mplayer.conf: No such file or directory
Reading config file /home/taw/.mplayer/config
Reading /home/taw/.mplayer/codecs.conf: can't open
'/home/taw/.mplayer/codecs.conf': No such file or directory
Reading /etc/MPlayer/codecs.conf: 49 audio & 130 video codecs
font: can't open file: /home/taw/.mplayer/font/font.desc
Font /usr/share/MPlayer/font/font.desc loaded successfully! (237 chars)
Using Linux hardware RTC timing (1024Hz).
Can't open input config file /home/taw/.mplayer/input.conf : No such file
or directory
Can't open input config file /etc/MPlayer/input.conf : No such file or
directory
Falling back on default (hardcoded) input config

Playing seti.wma
File not found: 'seti.wma'


Exiting... (End of file)

А с этим как быть?

Best regards,
---------TaZZ---------
E-Mail: taw88@mail.ru
ICQ: 201045832
----------------------


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

* [Comm] Набор .wma -> mp3
@ 2003-09-04 14:37 Oleg Dolgov
  2003-09-04 11:44 ` [Comm] " Sergey Vlasov
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Oleg Dolgov @ 2003-09-04 14:37 UTC (permalink / raw)
  To: Community

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

Здравствуйте.

Помогите плз. Как с помощью for конвертануть все wma файлы в директории
в mp3. По одному получается, а командой for что-то не выходит.
Проблема в том, что в именах присетствует пробел.

$ for i in *.wma; do mplayer -ao pcm $i || lame -b 128 audiodump.wav
$i.mp3 ; done 
Using GNU internationalization
Original domain: messages
Original dirname: /usr/share/locale
Current domain: mplayer
Current dirname: /usr/share/locale


MPlayer 0.90rc3-2.95.3 (C) 2000-2003 Arpad Gereoffy (see DOCS)

CPU: Intel Celeron A Mendocino/Pentium II Dixon (Family: 6, Stepping: 5)

//skip

Playing Запись
File not found: 'Запись'


Playing 10.wma
File not found: '10.wma'

Если по одному прогонять

mplayer -ao pcm Запись 1.wma || lame -b 128 audiodump.wav
Запись 1.mp3

То все получается.

-- 
С наилучшими,
Олег Долгов
dov@media-link.info
Registered Linux user #315454

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* [Comm] Re: Набор .wma -> mp3
  2003-09-04 13:48       ` ipAlex
@ 2003-09-04 14:55         ` Alexey Tourbin
  0 siblings, 0 replies; 13+ messages in thread
From: Alexey Tourbin @ 2003-09-04 14:55 UTC (permalink / raw)
  To: community

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

On Thu, Sep 04, 2003 at 04:48:41PM +0300, ipAlex wrote:
> по поводу правильнее я не прав, прошу прощения
> а вот разница точно есть:

Надежнее всего делать find -print0 | xargs -r0 -n1

> 1) for i in `ls *.ext`; do echo "$i"; done
> file
> 1.ext
> file
> 2.ext
> file
> 3.ext
> 
> 2) for i in *.ext; do echo "$i"; done
> file 1.ext
> file 2.ext
> file 3.ext

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: [Comm] Набор .wma -> mp3
  2003-09-04 14:37 [Comm] Набор .wma -> mp3 Oleg Dolgov
                   ` (3 preceding siblings ...)
  2003-09-04 14:14 ` TaZZ
@ 2003-09-04 15:03 ` Oleg Dolgov
  2003-09-04 12:18   ` ipAlex
  4 siblings, 1 reply; 13+ messages in thread
From: Oleg Dolgov @ 2003-09-04 15:03 UTC (permalink / raw)
  To: community

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

On Thu, 4 Sep 2003 14:37:57 +0000 Oleg Dolgov <dov@media-link.info>
wrote:

> Здравствуйте.
> 
> Помогите плз. Как с помощью for конвертануть все wma файлы в
> директории в mp3. По одному получается, а командой for что-то не
> выходит. Проблема в том, что в именах присетствует пробел.
> 
> $ for i in *.wma; do mplayer -ao pcm $i || lame -b 128 audiodump.wav
> $i.mp3 ; done 


Вопрос перефразируется.
$for i in '*.wma' ; ...
MPlayer свое дело делает, а вот lame выдает:

Can't init outfile '*.wma.mp3'

Что не так. Почему $i не доживает до вормирования имени файла?
Попробовал вместо || подставить просто ;
Результат тот-же.

-- 
С наилучшими,
Олег Долгов
dov@media-link.info
Registered Linux user #315454

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: [Comm] Набор .wma -> mp3
  2003-09-04 11:44 ` [Comm] " Alexey I. Froloff
@ 2003-09-04 15:31   ` Oleg Dolgov
  2003-09-09 12:09   ` [Comm] " Michael Shigorin
  1 sibling, 0 replies; 13+ messages in thread
From: Oleg Dolgov @ 2003-09-04 15:31 UTC (permalink / raw)
  To: community

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

On Thu, 4 Sep 2003 15:44:12 +0400 "Alexey I. Froloff" <raorn@immo.ru>
wrote:

> for i in *.wma; do mplayer -ao pcm "$i" || lame -b 128 audiodump.wav
> "$i.mp3" ; done

Спасибо. Вроде получается.

-- 
С наилучшими,
Олег Долгов
dov@media-link.info
Registered Linux user #315454

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* [Comm] Re: Набор .wma -> mp3
  2003-09-04 11:44 ` [Comm] " Alexey I. Froloff
  2003-09-04 15:31   ` Oleg Dolgov
@ 2003-09-09 12:09   ` Michael Shigorin
  2003-09-09 12:19     ` [Comm] Re: [JT] " ASA
  1 sibling, 1 reply; 13+ messages in thread
From: Michael Shigorin @ 2003-09-09 12:09 UTC (permalink / raw)
  To: Community

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

On Thu, Sep 04, 2003 at 03:44:12PM +0400, Alexey I. Froloff wrote:
> > $ for i in *.wma; do mplayer -ao pcm $i || lame -b 128 audiodump.wav
> > $i.mp3 ; done 
> $ for i in *.wma; do mplayer -ao pcm "$i" || lame -b 128 audiodump.wav "$i.mp3" ; done 

|| lame -b 128 audiodump.wav "${i/wma/mp3}"

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* [Comm] Re: [JT] Re: Набор .wma -> mp3
  2003-09-09 12:09   ` [Comm] " Michael Shigorin
@ 2003-09-09 12:19     ` ASA
  0 siblings, 0 replies; 13+ messages in thread
From: ASA @ 2003-09-09 12:19 UTC (permalink / raw)
  To: Michael Shigorin

Hello Michael,

Tuesday, September 9, 2003, 5:09:43 PM, you wrote:

А почему у вас одни письма подписаны, а другие нет?

-- 
Best regards,
 ASA                            mailto:llb@udm.ru



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

end of thread, other threads:[~2003-09-09 12:19 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-04 14:37 [Comm] Набор .wma -> mp3 Oleg Dolgov
2003-09-04 11:44 ` [Comm] " Sergey Vlasov
2003-09-04 11:44 ` [Comm] " Alexey I. Froloff
2003-09-04 15:31   ` Oleg Dolgov
2003-09-09 12:09   ` [Comm] " Michael Shigorin
2003-09-09 12:19     ` [Comm] Re: [JT] " ASA
2003-09-04 12:11 ` [Comm] " Mike Lykov
2003-09-04 14:14 ` TaZZ
2003-09-04 15:03 ` Oleg Dolgov
2003-09-04 12:18   ` ipAlex
2003-09-04 13:19     ` [Comm] " Alexey Tourbin
2003-09-04 13:48       ` ipAlex
2003-09-04 14:55         ` Alexey Tourbin

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