Posts Tagged ‘Musique’
juil
Spotify en natif sous Linux
by Mushiro in Informatique, Musique, linux
Spotify propose depuis quelques jours son logiciel dans une version native Linux. En effet, jusqu’à maintenant, il fallait installer la version Windows via Wine. Pour ma part, ça fonctionnait pas mal. Le son s’arrêtait parfois quand une autre application faisait quelque chose avec ALSA (utilisé pour la sortie son sous Wine). Mais sinon pas de soucis particuliers.
Mais c’est toujours mieux quand une application est native, et plus gratifiant que d’avouer qu’on utilise en fait des versions Windows sur son Ubuntu.
Read the rest of this entry »
fév
Utada – In the Flesh Tour – Londres 12 février 2010
by Mushiro in Musique, Voyage

Ce week-end, je suis allé au concert d’Utada à Londres. C’était le dernier de sa tournée In the Flesh 2010. Et c’était génial.
Pour ceux qui ne connaissent pas Utada : son nom complet est Hikaru Utada (宇多田 ヒカル). C’est une chanteuse japonaise, mais elle commence à s’internationaliser depuis plusieurs années, notamment aux États-Unis, sous le nom d’Utada. Son genre de musique est principalement de la JPop, mais ses albums anglais (2 pour le moment : Exodus et This is the one) tendent plus vers du Hip-Hop et R&B (j’ai toujours un peu de mal à bien définir les genres). Son site officiel : http://www.utada.com.
jan
Howto: split a flac track from its cue file
by Mushiro in Musique, linux
It happens from time to time that I’ve got a music album in
Flac format, in one file, with a
cue sheet file. Don’t ask me where it comes from
.
As my main (and only) OS at the moment is Ubuntu, and that the number of music players supporting cue files are very very limited, I have to split the unique file to multiple files, with the correct filenames and tags.
I found two sites explaining how to do that ( here, and here), and I merely merge the two articles here for archiving purpose.
(Road2Mayotte has translated the howto in french)
The name of the album I use for this howto is « MINAMOTRANCE CORE BREAK! ».
1. Splitting the file
As we will see later, it’s best to rename the cue file to a file with no space in it:
You will need the following applications: cuebreakpoints, cuetag (in cuetools package) and shnsplit (shntool package). Now let’s split it!
Something like this will be output:
Splitting [MINAMOTRANCE CORE BREAK!.flac] (52:46.37) --> [split-track02.flac] (4:57.25) : 100% OK
Splitting [MINAMOTRANCE CORE BREAK!.flac] (52:46.37) --> [split-track03.flac] (5:22.00) : 100% OK
Splitting [MINAMOTRANCE CORE BREAK!.flac] (52:46.37) --> [split-track04.flac] (5:22.00) : 100% OK
......
Ok, now we have flac files named split-track01.flac, split-track02.flac…
2. Transferring the tags
How about transferring the tags (ARTIST, TITLE…) from the cue file to the flac files? We do this by using the cuetag command (this command doesn’t support filenames with spaces, that’s why we renamed the cue file earlier):
You can check that the tags have been correctly set. Run for example:
and the title tag will be printed:
3. Renaming the files
Well, all that is left is to rename the files. We extract some tags from the files, and rename them. Here is a bash script to do this (save it in a file named rename_flac.sh, and chmod a+x on it):
for a in *.flac; do
ARTIST=`metaflac "$a" --show-tag=ARTIST | sed s/.*=//g | sed s#/#-#g`
TITLE=`metaflac "$a" --show-tag=TITLE | sed s/.*=//g | sed s#/#-#g`
TRACKNUMBER=`metaflac "$a" --show-tag=TRACKNUMBER | sed s/.*=//g`
mv "$a" "`printf %02g $TRACKNUMBER` - $ARTIST - $TITLE.flac"
done
Then in the directory with the flac files (change the path to where you saved the script):
01 - 源屋 - Intro.flac
02 - 源屋 - Party Like Us!.flac
....
Enjoy the music!
déc
Last.fm Tube Tags
by Mushiro in Japon, Musique
Au mois de novembre, le « labs » de last.fm proposait Tube Tags (accessible qu’aux abonnés pour le moment).
Cet outil permet de générer une sorte de graphe de l’évolution des écoutes de son compte au fil des mois, et est rendu sous forme de plan de métro (d’où le nom de l’outil en anglais). Il se base sur le type de chanson inscrit dans les tags.
Je l’ai essayé, et c’est vrai que ça rend pas mal :
Ce matin j’ai réessayé, et l’unicode est cassé
Ça fait des carrés à la place :
J’ai laissé un message sur leur forum : http://www.lastfm.fr/group/Playground/forum/93500/_/574688/1#f11339286. On va voir ce qu’ils vont répondre.
Edit du 08/01/2010 : c’est réparé ! Forcément, quand on oublie d’installer les polices japonaises, ça marche moins bien. http://www.lastfm.fr/group/Playground/forum/93500/_/574688/1#f11500447.
nov
Helena Noguerra in my soundtrack?
by Mushiro in Jeux video, Musique
J’avais furtivement vu passer le nom d’
Helena Noguerra à propos de la bande originale de
Bayonetta. Je m’étais posé la question si c’était celle qu’on connait en France, mais sans plus. Aujourd’hui, j’en ai la confirmation. C’est bien d’elle dont il s’agit. PlatinumGames en parle dans deux billets :
Bayonetta Soundtrack on sale! et
The Music of Bayonetta – Vol. 2.
2 vidéos dans la suite de l’article.
Read the rest of this entry »
