设为首页  
联系我们  
加入收藏  
网页制作 冲浪宝典 图形图像 操作系统 软件教学 编程开发 认证考试 安全技术 站长专区 文学驿站 娱乐天地 游戏天地 办公软件
文章搜索
您的位置: 首页 >> 文章首页 >> 软件教学 >> 多媒体类 >> FooBar2000 Title Formatting[FooBar2000标题格式使用详解]
精品推荐
多媒体类点击TOP10
·Windows Media Player同步歌词秀全攻略
·简单点击几个按钮 RM视频格式转换不再犯难
·豪杰视频通2.0:国产的极品DVD转换工具
·RM、RMVB去广告专家自己打造
·Winamp 1.0~5.0 完全更新历史
·DVD转VCD/SVCD/AVI/MPEG4的超级能手--DVD转换专家
·Autorun Builder--轻松制作Windows下的光盘启动菜单
·APE文件如何播放?如何把APE转制成其他格式?
·FooBar2000 Title Formatting[FooBar2000标题格式使用详解]
·玩转字幕一条龙
软件教学点击TOP10
·自己动手制作USB启动盘快速简单
·学用金山游侠修改游戏
·常用软件序列号
·几百个软件注册机
·用eBook Edit 自己动手制作exe型电子书
·应用软件注册码大全(最新整理) 1
·Windows Media Player同步歌词秀全攻略
·五分钟玩转电脑迷共享空间
·液晶显示器测试小工具--Monitors Matter CheckScreen
·简单点击几个按钮 RM视频格式转换不再犯难
精选专题

FooBar2000 Title Formatting[FooBar2000标题格式使用详解]

作者: 来源: 时间:2006-1-28 22:19:36

FooBar2000 Title Formatting[FooBar2000标题格式使用详解](14)
$puts(info_width,$max(40,$get(widest)))

//这里我们把这一部分的宽度调整为 4 的倍数
$if($not($stricmp($mod($get(info_width),4),0)),
$puts(info_width,$add($get(info_width),$mod($get(info_width),4))),
$puts(info_width,$get(info_width)))

//我们考虑以下在歌手名宽度不是 4 的倍数时,在 foobar 中
// (info_width - $len2($get(artist)))÷4 ×4+ $len2($get(artist)) 的结果为 info_width -2
//这样我们就需要在最后补上一个边框字符 ─
//同样在这种情况下我为了美观,使音轨序号 为 2 3 4 时的字符串向前移动一格,定义了 info_width_2

$if($not($stricmp($mod($len2($get(artist)),4),0)),
$puts(info_width_2,$sub($get(info_width),2)),
$puts(info_width_2,$get(info_width)))

//下面开设置这部分显示方式

$puts(info,
$ifgreater(5,%tracknumber%,
$select(%tracknumber%,
// 1: 歌手
//这儿和 Lucida Console 字体时有所不同,是除以 4 不是 2 了
$repeat(─,$div($sub($get(info_width),$len2($get(artist))),4))
$get(artist)
$repeat(─,$div($sub($get(info_width),$len2($get(artist))),4))
//这里也有了变化,当歌手名宽度不是 4 的倍数时后面加─
$if($not($stricmp($mod($len2($get(artist)),4),0)),─,)
,
// 2: 专辑
//这里 info_width_2
$repeat( ,$div($sub($get(info_width_2),$len2($get(album))),2))
$get(album)
$repeat( ,$div($sub($get(info_width),$len2($get(album))),2))
//因为字符串向前移动了一格,这里在后面补上
$if($not($stricmp($mod($len2($get(artist)),4),0)), ,)
$if($stricmp($mod($len2($get(album)),2),1), ,)
,
// 3: 歌曲信息
//这里 info_width_2
$repeat( ,$div($sub($get(info_width_2),$len2($get(track_info))),2))
$get(track_info)
$repeat( ,$div($sub($get(info_width),$len2($get(track_info))),2))
//因为字符串向前移动了一格,这里在后面补上
$if($not($stricmp($mod($len2($get(artist)),4),0)), ,)
$if($stricmp($mod($len2($get(track_info)),2),1), ,)
,
// 4: 专辑信息
//这里 info_width_2
$repeat( ,$div($sub($get(info_width_2),$len2($get(album_info))),2))
$get(album_info)
$repeat( ,$div($sub($get(info_width),$len2($get(album_info))),2))
//因为字符串向前移动了一格,这里在后面补上
$if($not($stricmp($mod($len2($get(artist)),4),0)), ,)
$if($stricmp($mod($len2($get(album_info)),2),1), ,)
,
)
// >4 ∷

1.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](1)
2.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](2)
3.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](3)
4.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](4)
5.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](5)
6.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](6)
7.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](7)
8.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](8)
9.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](9)
10.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](10)
11.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](11)
12.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](12)
13.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](13)
14.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](14)
15.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](15)
16.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](16)
17.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](17)
18.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](18)
19.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](19)
20.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](20)
21.FooBar2000 Title Formatting[FooBar2000标题格式使用详解](21)
共21页 9 7 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [218 :>

FooBar2000 Title Formatting[FooBar2000标题格式使用详解] 相关文章:
FooBar2000 Title Formatting[FooBar2000标题格式使用详解] 相关软件:
特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
转载请注明来源:http://www.xgdown.com