Potplayer直播源,电视直播源,IPTV 直播源分享。
Potplayer直播源,电视直播源,IPTV 直播源分享。
地址:https://iptv.b2og.com/
https://github.com/GOgo8Go/iptv-sources/tree/gh-pages
具体请看页面介绍。
2345软件合集最新版无广告纯净版20240121
2024-1-1 乱云飞 电脑 评论(0) 浏览(1638) 标签: 2345浏览器 加速浏览器 安全浏览器 软件下载 纯净版
授权验证源码备份
批处理翻转字符串
@echo offsetlocal enabledelayedexpansion
set string=13213610060
set reversedString=
for /L %%i in (0,1,7) do (
set char=!string:~%%i,1!
set reversedString=!char!!reversedString!
)
echo Reversed String: %reversedString%
cmd/k
批处理解密BASE64代码
@echo offset "encoded=MjAyNC8wMy8zMQ=="
set "decoded=%TEMP%\decoded.txt"
:: 将BASE64密文保存到文件
echo %encoded% > %decoded%
:: 解密BASE64密文
certutil -decode %decoded% %TEMP%\decrypted.txt > nul
:: 读取解密后的内容
set /p decrypted=<%TEMP%\decrypted.txt
:: 删除临时文件
del %decoded%
del %TEMP%\decrypted.txt
echo Decrypted text: %decrypted%
cmd/k
以下是一个示例的批处理代码,用于检测电脑日期并在日期超过指定日期后关闭电脑:
以下是一个示例的批处理代码,用于检测电脑日期并在日期超过指定日期后关闭电脑:```batch
@echo off
setlocal
rem 设置目标日期
set "target_date=2024/03/31"
rem 获取当前日期
for /f "tokens=2 delims==" %%G in ('wmic os get localdatetime /value') do set "current_date=%%G"
set "current_date=%current_date:~0,8%"
rem 比较日期
if "%current_date%" gtr "%target_date%" (
echo 日期超过 %target_date%,将关闭电脑...
shutdown /s /t 0
) else (
echo 日期未超过 %target_date%,电脑将继续运行。
)
endlocal
```
请注意,批处理脚本是在 Windows 系统上运行的。在运行脚本之前,可以根据需要修改`target_date`变量来设置目标日期。脚本将获取当前系统日期,并与目标日期进行比较。如果当前日期超过目标日期,则会显示一条消息,并使用`shutdown`命令关闭电脑。如果当前日期未超过目标日期,则会显示另一条消息。
请谨慎使用此代码,确保你的操作符系统上具有正确的权限,并在运行任何关闭电脑命令之前,保存你的工作和关闭你的应用程序。
多路视频推流软件推流地址测试video_push_url.txt
ch01,http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear2/prog_index.m3u8
ch02,https://ckplayer-video.oss-cn-shanghai.aliyuncs.com/mp4/1_1920x1080.mp4
ch03,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226010/index.m3u8
ch04,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/index.m3u8
ch05,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8
ch06,http://vd3.bdstatic.com/mda-jennyc5ci1ugrxzi/mda-jennyc5ci1ugrxzi.mp4
ch07,http://vfx.mtime.cn/Video/2021/11/16/mp4/211116131456748178.mp4
ch08,http://hw-m-l.cztv.com/channels/lantian/channel001/1080p.m3u8
ch09,http://47.114.127.78:6900/cf3619ac1efe848d052d37c6b219470b
ch10,http://222.175.159.226:808/hls/20231/index.m3u8
ch11,http://bakevision.tpddns.cn:5555/0.m3u8
ch12,http://1.80c.cc:5300/screenlive.m3u8
ch13,C:/push_20231222/1.mp4
ch14,C:/push_20231222/3.mp4
ch15,C:/push_20231222/4.mp4
ch16,desktop
ch17,https://brics.bonus-tv.ru/cdn/brics/chinese/tracks-v1a1/mono.m3u8
ch18,rtsp://admin:e1111111@1.80c.cc:554/Streaming/Channels/101
ch19,http://223.110.245.139/PLTV/4/224/3221227022/index.m3u8
ch20,https://ntd02.akamaized.net/NTDA/tracks-v4a1/mono.m3u8
ch21,https://sc2022.stream-link.org/tv2306.php?id=h02
ch22,https://pulltv2.wanfudaluye.com/live/tv2.m3u8
ch23,https://streamnorge.com:8088/hls/tvo.m3u8
ch24,http://livetv.ktv.zone/13/play.m3u8
ch25,http://livetv.ktv.zone/12/play.m3u8
多路视频推流软件下载
2023-12-21 乱云飞 监控 评论(0) 浏览(186) 标签: 视频推流 RTSP推流 视频服务器
https://www.123pan.com/s/PCf7Vv-4vRJv.html
写一个批处理 检测IP Helper服务状态 如果未启动 则启动
您可以使用以下批处理脚本来检测并启动IP Helper服务:```batch
@echo off
REM 检测是否正在运行IP Helper服务
sc query "iphlpsvc" | find "RUNNING" > nul
REM 检查错误级别(错误级别0表示服务正在运行)
if %errorlevel% equ 0 (
echo IP Helper服务已经启动
) else (
echo IP Helper服务未启动,正在尝试启动...
net start "iphlpsvc"
REM 检查启动是否成功
sc query "iphlpsvc" | find "RUNNING" > nul
if %errorlevel% equ 0 (
echo IP Helper服务已成功启动
) else (
echo 无法启动IP Helper服务,请检查系统配置
)
)
```
请注意,此脚本需要以管理员权限运行才能成功启动或停止服务。
网络监测程序 2023-12-11 BY wwwylg
@echo off @mode con cols=50 lines=10 @title 网络监测程序 2023-12-11 BY wwwylg setlocal set IP=192.168.0.118 :qq5082500 ping -n 1 %IP% | find "TTL=" > nul if errorlevel 1 ( color 4F echo 第1次判断:网络断开了,跳转到第二次判断。 goto ERROR ) else ( color 9F echo 第1次判断:网络正常,什么也不操作。 timeout /t 5 > nul goto qq5082500 ) :ERROR ping -n 1 %IP% | find "TTL=" > nul if errorlevel 1 ( color 4F echo 第2次判断:网络断开了,什么也不操作。 goto ERROR timeout /t 5 > nul ) else ( color 4F echo %date% %time% 重启播放器。 @taskkill /f /im play_rtsp.dll @cd /d %~dp0 @start C:\ezsoft\play_rtsp.dll -fullscreen --title=VirtualCamera --no-window-dragging "rtsp://admin:kevin309420@192.168.0.118:554/type=0&id=1" @tasklist | find /i "osd.exe"||start C:\ezsoft\lib\osd.exe @ping -n 3 127.0.0.1 >NUL @taskkill /f /im "play_mp4.dll" timeout /t 5 > nul goto qq5082500 ) endlocal cmd/k