影音天地主旨 ﹝請按主旨作出回應﹞ 寄件者 傳送日期 由舊至新 由新至舊
[#1] Cplay 2.0B37 available for download    
Cplay 2.0b37 is a very very good sound version. Much better than cplay 2.0b36. Very musical, balanced sound and excellent resolution.

http://cicsmemoryplayer.com/index.php?n=CPlay.Download
musimusi
個人訊息 正式會員
218.xxx.xxx.141
2010-08-05 01:34
[#2] Cplay 2.0B37 available for download    
網站報告不安全,請勿內進.
cham
個人訊息 正式會員
112.xxx.xxx.77
2010-08-05 12:31
[#3] Cplay 2.0B37 available for download    
網站報告不安全,請勿內進.

it is common warning
cics also notify this warning to public already!
cryingfreeman
個人訊息 正式會員
218.xxx.xxx.35
2010-08-05 13:20
[#4] Cplay 2.0B37 available for download    
真係幾好声喎
meewohse
個人訊息 正式會員
219.xxx.xxx.49
2010-08-08 14:31
[#5] Cplay 2.0B37 available for download    
I don't know why, but this version sound much better in my system. A big jump. Thanks Ching confirming that.
musimusi
個人訊息 正式會員
218.xxx.xxx.141
2010-08-08 16:10
[#6] Cplay 2.0B37 available for download    
cplay一日唔改好個interface, 任佢好聲到爆炸我都唔會用, 因為佢操作既麻煩程度嚴重影響我既聽歌心情~

雖然我同意佢既聲效真係幾ok ...
485648
個人訊息 正式會員
219.xxx.xxx.163
2010-08-08 19:59
[#7] Cplay 2.0B37 available for download    
最近學人玩 CAS,download 咗 cplay 2.0b38,個 interface 真係... 8(

最後寫咗個簡單 script 嚟 gen 個 cuesheet,起碼唔駛逐首歌咁播,還可幾啦。 8)

最後修改時間: 2010-09-26 16:57:01
VB
個人訊息 正式會員
183.xxx.xxx.245
2010-09-26 16:55
[#8] Cplay 2.0B37 available for download    
There is a recursive cue sheet generator you can download.

Once cue sheet is done. Using it is not that bad.

http://home.roadrunner.com/~aljordan/RecursiveCueCreator.html
musimusi
個人訊息 正式會員
218.xxx.xxx.167
2010-09-26 19:44
[#9] Cplay 2.0B37 available for download    
By the way B38 is really really good.
musimusi
個人訊息 正式會員
218.xxx.xxx.167
2010-09-26 19:44
[#10] Cplay 2.0B37 available for download    
But this cue sheet software does not support Chinese.
AL8
個人訊息 正式會員
218.xxx.xxx.230
2010-09-26 21:31
[#11] Cplay 2.0B37 available for download    
In fact, I only use the cue tool for individual sound files I purchased.

For CD, when i rip it, I use EAC to rip the whole image and gen cue file at the same time. Then turn it into a big compressed file. In this case, I don't need to use Chinese file name. please note that FLAC tool do not work with Chinese file name either.

The EAC generated CUE file give Chinese description and index to the sound in the big cd image file.

So when I use cplay, I just open the cue file for the cd image and it works pretty well for me.

最後修改時間: 2010-09-27 00:58:48
musimusi
個人訊息 正式會員
218.xxx.xxx.167
2010-09-27 00:56
[#12] Cplay 2.0B37 available for download    
Just for sharing. Here is my workflow.

1. Use EAC to rip CD to FLAC using the following directory structure with track no. as the prefix; will try to get the song names from freedb if they are in English or Trad. Chinese; for those Japanese song names, I will use the default, i.e. Track01, Track02, etc.

...\performer\album\

e.g. d:\夏韶聲\諳\

2. open a command prompt to the above directory after the rip (under Win7, shift+right click on the directory in file explorer, then select "Open Command Window here" in the context menu.)

3. run my script to generate the cue file. (I will post my simple script when back to home after work.) The ordering of the songlist will be the same as that when run "dir".

To play the cue file, run cplay and then select the cue file under the directory ...\performer\album\.

In that case, Chinese song names are supported but not for song names in Japanese, or with Hong Kong "special" characters.

One of the benefits from this flow is that I can put all my favorite songs from different albums under a single directory, then generate a single cue file for them.

8)


最後修改時間: 2010-09-27 21:13:26
VB
個人訊息 正式會員
118.xxx.xxx.114
2010-09-27 20:59
[#13] Cplay 2.0B37 available for download    
musimusi: I just tried 2.0b38 for cplay. Also tried the latest foobar2k (wasapi) and mediamonkey (asio). I found cplay (asio) gives me the best result with my PC (using default settings). 8)

最後修改時間: 2010-09-27 21:12:35
VB
個人訊息 正式會員
118.xxx.xxx.114
2010-09-27 21:11
[#14] Cplay 2.0B37 available for download    
Here is my simple script. Just global replace # by a space will be ok.

REM start
@echo#off

set#count=1

set#filename="songs.cue"
if#exist#%filename%#del#%filename%

echo#Cue#file:#%filename%

echo#REM#GENRE#Playlist>>#"%filename%"
echo#PERFORMER#"singer">>#"%filename%"
echo#TITLE#"album">>#"%filename%"

setlocal#enableDelayedExpansion

for#%%i#in#(*.flac)#do#(
echo#FILE#"%%i"#FLAC>>#%filename%
echo###TRACK#!count!#AUDIO>>##%filename%
echo#####TITLE#"%%~ni">>##%filename%
echo#####PERFORMER#"singer">>##%filename%
echo#####INDEX#01#00:00:00>>##%filename%
set#/a#count+=1
)

setlocal#disableDelayedExpansion

echo#Done!
REM end
VB
個人訊息 正式會員
183.xxx.xxx.245
2010-09-28 20:40
[#15] Cplay 2.0B37 available for download    
VB
could i save it as a 'bat' file?
pls and thx
cryingfreeman
個人訊息 正式會員
218.xxx.xxx.35
2010-09-29 11:36
[#16] Cplay 2.0B37 available for download    
I saved it as .cmd but should be ok to save as .bat, as it is just an ordinary win batch script. Pls be reminded to global replace the # with a white space, as it is critical to have the right number of space character in order to make the cue file works.
VB
個人訊息 正式會員
203.xxx.xxx.17
2010-09-29 19:09
按照傳送日期顯示:由舊至新由舊至新  由新至舊由新至舊
最新資訊 - 市場
香港高級音響展2026年8月7-9日 2026-08-01

最新資訊 - 市場
百搭高級音響有限公司The Sound Chamber 2026-08-01

最新資訊 - 影音
KEF 推出全新喇叭音響系統 LS LUXE 2026-08-01

最新資訊 - 影音
採用珍藏之二氧化鉻磁帶,磁氣研究所限量推出「High Position/Type-II」高音質卡帶 2026-07-30

最新資訊 - 影音
鐵三角於 7 月 27 日「Sound Burger 之日」在日本國內,限量開賣「鯊魚」限定款 2026-07-27

最新資訊 - 影音
限量 500 隻:Sony 推出錄音室監聽耳機「MDR-CD900ST」與「THE FIRST TAKE」聯名款 2026-07-25

最新資訊 - 影音
roon x Eversolo 宣布旗下 Eversolo T10 現已正式通過 Roon Ready 認證 2026-07-22

最新資訊 - 影音
Marantz 推出配備 HDMI 的全新入門級合併式放大器「MODEL 70」 2026-07-20