
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Based on (https://github.com/clue/docker-streamripper/tree/master) just updated to Debian Bookworm and built as amd64 and arm64 images.
Check the Streamripper https://manpages.ubuntu.com/manpages/focal/man1/streamripper.1.html for all supported options.
http://streamripper.sourceforge.net/ is an application that lets you record streaming mp3 to your hard drive. This is a https://www.docker.com image that eases setup.
From http://streamripper.sourceforge.net/about.php:
Streamripper started as a way to separate tracks via Shoutcast's title-streaming feature. This has now been expanded into a much more generic feature, where part of the program only tries to "hint" at where one track starts and another ends, thus allowing a mp3 decoding engine to scan for a silent mark, which is used to find an exact track separation.
Streamripper allows you to download an entire station of music. Many of these mp3 radio stations only play certain genres, so you can now download an entire collection of goa/trance music, an entire collection of jazz, punk rock, whatever you want.
This docker image is available as an https://hub.docker.com/r/infectedsith/streamripper, so using it is as simple as running:
bash$ docker run infectedsith/streamripper -h
Using this image for the first time will start a download automatically. Further runs will be immediate, as the image will be cached locally.
Docker containers run in an isolated environment, so in order to access your ripped mp3 files you will have to mount a volume (shared directory) like this:
bash-v $HOME/MyMusic:/home/streamripper
We're almost done. Now you need to get the streaming URL of your favorite online radio station. The SHOUTcast index is probably a good start if you're unsure. The streaming URL to your online radio station will need to be passed as an argument to the streamripper container.
You can also supply any number of additional streamripper arguments that will be passed through unmodified. Descri***g all of them here is a bit out of scope, so you're recommended to familiarize yourself with the help (see the above -h example).
A common way to put this all together looks like this:
bash$ docker run -d -v $HOME/MyMusic:/home/streamripper infectedsith/streamripper http://mystation.local/radio.pls -s -m 30 --xs2 -o never -T
This will start the streamripper container in a detached session in the background.
Streamripper supports creating a "relay stream" that allows clients to connect to the stream that is currently being ripped. This means that you can share the same stream without causing another connection to the remote radio station.
This image is configured to automatically pass the required streamripper options and to automatically expose the streamripper stream relay on port 8000. If you want to publish this port for outside access, you can simply pass a ***ding like this:
-p 8000:8000
This container is disposable, as it doesn't store any sensitive information at all. If you don't need it anymore, you can stop and remove it.
Similarly, you can also use https://docs.docker.com/compose/ to configure and run this image. Simply create a docker-compose.yml file like this:
ymlversion: '3' services: streamripper: image: infectedsith/streamripper restart: always ports: # - 8000:8000 # optionally publish relay stream volumes: - $HOME/MyMusic:/home/streamripper command: http://mystation.local/radio.pls -s -m 30 --xs2 -o never -T
You can then run this as a background service like this:
bash$ docker-compose up -d
If you want to access (share) the ripped MP3 files through a webbrowser, you may simply use the https://github.com/clue/docker-h5ai Docker image:
ymlversion: '3' services: streamripper: image: infectedsith/streamripper restart: always volumes: - $HOME/MyMusic:/home/streamripper command: http://mystation.local/radio.pls -s -m 30 --xs2 -o never -T web: image: clue/h5ai ports: - 80:80 volumes: - $HOME/MyMusic:/var/www
When running this you will now be presented with a beautiful listing of all new songs:
.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务