The officially official Devuan Forum!

You are not logged in.

#576 2022-10-06 10:16:48

MiyoLinux
Member
Registered: 2016-12-05
Posts: 1,323  

Re: Music

Here's a couple of more radio stations for your terminal enjoyment...  big_smile  tongue

Symphonic Metal

ffplay -nodisp https://bob.hoerradar.de/radiobob-symphmetal-mp3-hq

Epic Music

ffplay -nodisp http://209.133.216.3:7777/stream/1/

I have been Devuanated, and my practice in the art of Devuanism shall continue until my Devuanization is complete. Until then, I will strive to continue in my understanding of Devuanchology, Devuanprocity, and Devuanivity.

Veni, vidi, vici vdevuaned. I came, I saw, I Devuaned. wink

Offline

#577 2022-10-07 10:59:13

Ogis1975
Member
Registered: 2017-04-21
Posts: 307  
Website

Re: Music

Thank you, MiyoLinux, for this

ffplay

command.

For playing all files in dir, i use this command:

for f in *.mp3 ; do ffplay -autoexit "$f"; done

What economists call over-production is but a production that is above the purchasing power of the worker, who is reduced to poverty by capital and state.
            ----+- Peter Kropotkin -+----

Offline

#578 2022-10-07 14:16:24

MiyoLinux
Member
Registered: 2016-12-05
Posts: 1,323  

Re: Music

You're welcome!

For multiple file types, use something like this (edit/remove/add file types if needed)...

for f in *.{mp3,m4a,aac,ogg,flac,wav} ; do ffplay -nodisp -autoexit "$f" ; done

It will play all of the music file types in the order that they are listed in the command. If it doesn't find a file type, it moves on to the next type until it does find one.

Also, for a parent folder that contains sub-folders of music (again, edit/remove/add file types if needed). Open your terminal in the parent folder, and enter...

for f in */*.{mp3,m4a,aac,ogg,flac,wav} ; do ffplay -nodisp -autoexit "$f" ; done

That will play through each of the sub-folders one at a time and also use the same as above...playing each file type as they are listed in the command.

I add the -nodisp flag, because I don't care for the visualization window that pops up. smile

EDIT: I have aliases in my .bashrc file for both of those commands... tongue

Last edited by MiyoLinux (2022-10-08 10:06:24)


I have been Devuanated, and my practice in the art of Devuanism shall continue until my Devuanization is complete. Until then, I will strive to continue in my understanding of Devuanchology, Devuanprocity, and Devuanivity.

Veni, vidi, vici vdevuaned. I came, I saw, I Devuaned. wink

Offline

#579 2022-10-08 08:22:18

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Music

Spirit in the Dark by Arethra Franklin.

And now True Genius by Ray Charles.

In a Soul mood today.

Last edited by Head_on_a_Stick (2022-10-08 09:36:54)


Brianna Ghey — Rest In Power

Offline

#580 2022-10-08 23:23:04

GlennW
Member
From: Brisbane, Australia
Registered: 2019-07-18
Posts: 582  

Re: Music

Smith/Kotzen - Better Days ...And Nights.


pic from 1993, new guitar day.

Offline

#581 2022-10-09 12:59:36

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Music

Lots of James Brown, at the request of Mrs HoaS. The lady has fine taste, that's for sure cool


Brianna Ghey — Rest In Power

Offline

#582 2022-10-09 14:25:52

aitor
Member
From: basque country
Registered: 2016-12-03
Posts: 219  
Website

Re: Music

Head_on_a_Stick wrote:

Spirit in the Dark by Arethra Franklin.

And now True Genius by Ray Charles.

In a Soul mood today.

Don't forget Janis Joplin


If you work systematically, things will come by itself (Lev D. Landau)

Offline

#583 2022-10-09 18:06:15

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Music

^ Good call! smile


Brianna Ghey — Rest In Power

Offline

#584 2022-10-10 11:45:44

Ogis1975
Member
Registered: 2017-04-21
Posts: 307  
Website

Re: Music

MiyoLinux wrote:

for a parent folder that contains sub-folders of music (again, edit/remove/add file types if needed). Open your terminal in the parent folder, and enter...

for f in */*.{mp3,m4a,aac,ogg,flac,wav} ; do ffplay -nodisp -autoexit "$f" ; done

Thanks so much for these tips. Really helpful!


What economists call over-production is but a production that is above the purchasing power of the worker, who is reduced to poverty by capital and state.
            ----+- Peter Kropotkin -+----

Offline

#585 2022-10-10 15:31:58

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Music

Fresh Fruit for Rotting Vegetables by the Dead Kennedys.


Brianna Ghey — Rest In Power

Offline

#586 2022-10-10 23:32:12

GlennW
Member
From: Brisbane, Australia
Registered: 2019-07-18
Posts: 582  

Re: Music

The Blues Band 1980
https://www.youtube.com/watch?v=CzK3F71xAes


pic from 1993, new guitar day.

Offline

#587 2022-10-11 19:21:39

LU344928
Member
Registered: 2020-02-13
Posts: 72  

Re: Music

MiyoLinux wrote:

You're welcome!

For multiple file types, use something like this (edit/remove/add file types if needed)...

for f in *.{mp3,m4a,aac,ogg,flac,wav} ; do ffplay -nodisp -autoexit "$f" ; done

It will play all of the music file types in the order that they are listed in the command. If it doesn't find a file type, it moves on to the next type until it does find one.

Also, for a parent folder that contains sub-folders of music (again, edit/remove/add file types if needed). Open your terminal in the parent folder, and enter...

for f in */*.{mp3,m4a,aac,ogg,flac,wav} ; do ffplay -nodisp -autoexit "$f" ; done

That will play through each of the sub-folders one at a time and also use the same as above...playing each file type as they are listed in the command.

I add the -nodisp flag, because I don't care for the visualization window that pops up. smile

EDIT: I have aliases in my .bashrc file for both of those commands... tongue

Good to know, thanks.


Google is not your friend

Offline

#588 2022-10-12 20:36:07

MiyoLinux
Member
Registered: 2016-12-05
Posts: 1,323  

Re: Music

LU344928 wrote:

Good to know, thanks.

Sure!


I have been Devuanated, and my practice in the art of Devuanism shall continue until my Devuanization is complete. Until then, I will strive to continue in my understanding of Devuanchology, Devuanprocity, and Devuanivity.

Veni, vidi, vici vdevuaned. I came, I saw, I Devuaned. wink

Offline

#589 2022-10-12 21:52:39

ralph.ronnquist
Administrator
From: Clifton Hill, Victoria, AUS
Registered: 2016-11-30
Posts: 1,106  

Re: Music

.. and you might want to fit in an unsort (from the unsort package) on the filename list to avoid the play order rigidity.

Offline

#590 2022-10-17 01:49:02

zephyr
Member
From: as where the crow flies native
Registered: 2016-12-01
Posts: 409  
Website

Re: Music

Firm

live in peace
https://www.youtube.com/watch?v=8-Khogv3VNk

cheers

zephyr


CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe

Offline

#591 2022-10-17 01:59:05

zephyr
Member
From: as where the crow flies native
Registered: 2016-12-01
Posts: 409  
Website

Re: Music

Pink Floyd

darkside of the rainbow
https://www.youtube.com/watch?v=P_5ENgepTzs

cheers

z


CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe

Offline

#592 2022-10-17 03:58:01

golinux
Administrator
Registered: 2016-11-25
Posts: 3,137  

Re: Music

Amazing tabla and bansouri:
https://www.youtube.com/watch?v=O2K0ptoYpuc

Offline

#593 2022-10-18 10:40:07

LU344928
Member
Registered: 2020-02-13
Posts: 72  

Re: Music

golinux wrote:

Amazing tabla
[...]

And again here.


Google is not your friend

Offline

#594 2022-10-18 14:26:17

zephyr
Member
From: as where the crow flies native
Registered: 2016-12-01
Posts: 409  
Website

Re: Music

Kitaro

caravansary
https://www.youtube.com/watch?v=bfHH6YImnZs

cheers

zephyr


CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe

Offline

#595 2022-10-18 14:29:53

andyprough
Member
Registered: 2019-10-19
Posts: 327  

Re: Music

zephyr wrote:

Kitaro

caravansary
https://www.youtube.com/watch?v=bfHH6YImnZs

cheers

zephyr

Wow, I haven't heard this for quite a few years. Blast from the distant past, thanks zephyr

Offline

#596 2022-10-18 17:20:03

zephyr
Member
From: as where the crow flies native
Registered: 2016-12-01
Posts: 409  
Website

Re: Music

andyprough wrote:  Wow, I haven't heard this for quite a few years. Blast from the distant past, thanks zephyr

Most welcome! smile

First heard Kitaro while I was visiting Saipan in the early 1980's, living in Hagatna (Guam rename) at the time. At a Japanese duty free shop, I asked did they know who the musician was being piped in, she brought me the CD, it was the Silk Road release.

cheers

zephyr


CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe

Offline

#597 2022-10-31 06:26:47

GlennW
Member
From: Brisbane, Australia
Registered: 2019-07-18
Posts: 582  

Re: Music

Lari Basilio - Your Love


pic from 1993, new guitar day.

Offline

#598 2022-10-31 23:09:40

zephyr
Member
From: as where the crow flies native
Registered: 2016-12-01
Posts: 409  
Website

Re: Music

Dope Lemon

hey you
https://www.youtube.com/watch?v=RKMI_bQLYO8

hello Ozi!

cheers

zephyr

Last edited by zephyr (2022-10-31 23:13:06)


CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe

Offline

#599 2022-11-01 07:32:35

zephyr
Member
From: as where the crow flies native
Registered: 2016-12-01
Posts: 409  
Website

Re: Music

Jeff Beck

beyond the veil
https://www.youtube.com/watch?v=nQDjSGnmYBI

cheers

zephyr


CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe

Offline

#600 2022-11-01 07:34:43

zephyr
Member
From: as where the crow flies native
Registered: 2016-12-01
Posts: 409  
Website

Re: Music

Tal Wilkenfeld

under the sun
https://www.youtube.com/watch?v=iPRXymi6cV4

cheers

zephyr


CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe

Offline

Board footer