You are not logged in.
Bonjour,
Qu'est-ce que le format opus ?
voir fiche wikipedia : https://fr.wikipedia.org/wiki/Opus_Interactive_Audio_Codec
Où le trouver ?
https://opus-codec.org/
https://pkgs.slitaz.org/?info=opus-tools
Où obtenir de la musique libre au format .opus ?
par exemple : https://archive.org/search.php?query=only2try&sin=&sort=-publicdate
Comment écouter un fichier .opus sans lecteur ?
Pour jouer un fichier, dans un terminal :
[c]opusdec /chemin_vers_répertoire/morceau-à-écouter.opus[/c]
Pour jouer plusieurs fichiers, dans un terminal :
[c]for i in *.*;do opusdec --quiet /chemin_vers_répertoire/"$i";done[/c]
option quiet : mode non verbeux
"$i" : quelquefois les noms de fichiers contiennent des espaces. Ainsi, les morceaux sont bien joués.
Pour afficher le fichier qui est joué :
[c]for i in *.*;do echo "$i" & opusdec --quiet /chemin_vers_répertoire/"$i";done[/c]
Les titres s'afficheront les uns à la suite des autres.
Amitiés.
===========english===============
Hello,
What is opus ?
See Wikipedia : https://en.wikipedia.org/wiki/Opus_(audio_format)
Where to get it ?
https://opus-codec.org/
https://pkgs.slitaz.org/?info=opus-tools
Where to get opus format music ?
for example here : https://archive.org/search.php?query=only2try&sin=&sort=-publicdate
How to listen music in opus format without player ?
For one file only, in a terminal :
[c]opusdec /path_to_dir/track_to_listen.opus[/c]
For multiple files, in a terminal too :
[c]for i in *.*;do opusdec --quiet /chemin_vers_répertoire/"$i";done[/c]
option --quiet : no verbose mode. Reading only.
"$i" : sometimes, the filename contains spaces inside. But, with "$i", the track is played correctly.
To view the file that is being played :
'for i in *.*;do echo "$i" & opusdec --quiet /chemin_vers_répertoire/"$i";done'
The titles will be displayed one after the other.
Friendly.
Regards
Offline
J'ai omis :
un device /dev/dsp est nécessaire.
Pour le créer, se mettre en route et en root dans un terminal :
[c]mknod /dev/dsp c 14 3[/c]
puis, après touche Entrée :
[c]chmod a+rwx[/c].
Voilà, c'est tout !
=============english==============
I omitted :
a /dev/dsp device is required.
To create it, root in a terminal:
'mknod /dev/dsp c 14 3'
then, after to hit "Enter" key :
'chmod a+rwx'
hit Enter key again.
That's it!
Offline
Opus live radio streaming and other codecs http://dir.xiph.org/
Offline
Gracias rerivero
I'll go to listen soon.
Offline
[ Generated in 0.020 seconds, 7 queries executed - Memory usage: 1.53 MiB (Peak: 1.77 MiB) ]