翼展电脑服务中心


alist主题样式备份保留注释的版本

2023-5-16 乱云飞 评论(0) 浏览(83)

body {zoom:1.0;-moz-transform:scale(1.0);-moz-transform-origin:0 0;}/* 全局 */
@media screen and (max-width:560px) {.wp-none {display:none;}}

.hope-ui-light {background-color:#00BFFF!important;}/* 白天背景图 */
.footer {display:none!important;}/* 去掉底部文字 */
.aplayer-list-title {color:#000000!important;}/* 音乐列表标题 */
.hope-c-PJLV-ieESZju-css {color:#00BFFF!important;}/* 没有更多了 */
.hope-c-PJLV-ikEIIxw-css {height:32px;color:#000000;border-radius:0px!important;}/* 搜索框 */
.hope-c-PJLV-ikgiLXI-css {background-color:#00BFFF;border-radius:0px;color:#fff!important;}/* 音乐列表 */

/* 主列表夜间模式透明 */
.obj-box.hope-stack.hope-c-dhzjXW.hope-c-PJLV.hope-c-PJLV-iigjoxS-css,
.hope-c-PJLV.hope-c-PJLV-iiuDLME-css {background-color:rgb(0,0,0,0.9);border-radius:0px!important;}

/* readme夜间模式透明 */
.obj-box.hope-stack.hope-c-dhzjXW.hope-c-PJLV.hope-c-PJLV-igScBhH-css {
background-color:rgba(255,255,255,1.0);border-radius:0px!important;}

/* 主列表透明 */
.hope-c-PJLV.hope-c-PJLV-ikSuVsl-css {background-color:rgba(255,255,255,0.9);border-radius:0px!important;}

/* readme透明 */
.hope-c-PJLV-iiOacaA-css {background-color:rgba(0,191,255,0.7);width:940px;border-radius:0px!important;}

/* 全局直角化 */
.hope-c-PJLV-iikaotv-css,.hope-c-PJLV-ijSQbqe-css,.hope-c-PJLV-ijpihTg-css,.hope-c-PJLV-igXrpAn-css,
.hope-c-PJLV-ifiEvmt-css,.hope-c-PJLV-ibtHApG-css,.hope-c-PJLV-ibvTkII-css,.hope-c-PJLV-ikoJJtX-css,
.hope-c-PJLV-ihHRgxo-css,.hope-c-PJLV-ibnmsYG-css,.hope-c-PJLV-ieKuSxQ-css,.hope-c-PJLV-ihAJmko-css,
.hope-c-PJLV-iehpHsP-css,.hope-c-PJLV-ibMsOCJ-css,.hope-c-PJLV-ijgALRM-css,.hope-c-PJLV-ihahDK-css,
.hope-c-PJLV-ibsfJwa-css,.hope-c-PJLV-iiBaxsN-css,.hope-c-PJLV-idcOWKd-css,.hope-c-PJLV-ikgiLXI-css,
.hope-c-PJLV-iSMXDf-css,.hope-c-PJLV-ijgzmFG-css,.hope-c-PJLV-iicyfOA-css,
.solid-contextmenu {border-radius:0px!important;}

/* 顶部右上角切换按钮/网页中心部分透明度  */
.hope-c-ivMHWx-hZistB-cv.hope-icon-button,.hope-c-PJLV-ijgzmFG-css,
.hope-c-PJLV-iicyfOA-css {background-color:rgba(255,255,255,1);border-radius:0px!important;}

【FFmpeg】ffplay播放rtsp视频流花屏问题 (转)

2023-5-15 乱云飞 评论(0) 浏览(82)

【FFmpeg】ffplay播放rtsp视频流花屏问题 (转) - 深海的小鱼儿 - 博客园 (cnblogs.com)

(15条消息) 从FFmpeg源码去解决IJKPlayer直播花屏问题_invalid level prefix_徐福记456的博客-CSDN博客

批处理调用VLC播放器全屏播放视频不显示控制界面

2023-5-6 乱云飞 评论(0) 浏览(70) 标签: VLC播放器 VLC命令行 VLC全屏

@echo off
start /max /min vlc.exe D:\ffmpeg\1.mp4 --no-qt-privacy-ask --no-video-deco --no-embedded-video --no-audio --no-qt-error-dialogs --no-video-title-show
exit

批处理获取电脑当前时间,根据时间打开不同文件。

2023-5-3 乱云飞 评论(0) 浏览(78) 标签: 批处理 获取时间 电脑时间 判断时间

@echo off
@rem 获取电脑当前时间,根据时间打开不同文件。
@rem 80c.cc 
for /f "tokens=1-2 delims=: " %%H in ("%time%") do (
    set /a hour=%%H
)
if %hour% geq 6 if %hour% lss 20 (
    echo 现在是白天
) else (
    echo 现在是夜间
)
cmd /k

有用户统计功能的启动器,用51.la统计程序使用情况

2023-4-29 乱云飞 评论(0) 浏览(9)

[该内容已加密,请点击标题输入密码访问]

JS检测URL地址后面有没有参数

2023-4-23 乱云飞 评论(0) 浏览(62)

<script language="javascript">//如果有参数显示参数,没有参数显示NULL
str=location.search.substring(1,location.search.length); 
if (str != '') {document.write("<font color=#ffffff><h1>"+str+"</h1></font>");} 
else {document.write("<font color=#ffffff><h1>NULL</h1></font>");}
</script>

TPLINK安防监控软件下载链接

2023-4-23 乱云飞 评论(0) 浏览(71)

https://security.tp-link.com.cn/m/detail_download_6764.html

命令行强制修改系统时间

2023-4-19 乱云飞 评论(0) 浏览(89) 标签: 修改系统时间 强制修改系统时间 修改电脑时间

cmd--->date--->time

这是微软小冰吗?

2023-4-18 乱云飞 评论(0) 浏览(66)

1.png


ffmpeg avi2mp4

2023-4-6 乱云飞 评论(0) 浏览(80)

ffmpeg -i input_filename.avi -c:v copy -c:a copy -y output_filename.mp4
预ICP备10086-001号 © 翼展网/80C.CC 技术支持/洛阳翼展科技
TEL / 13213610060 QQ / 345794501
Powered by emlog