<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Discuz! BBS - 多媒体-影视</title>
    <link>https://www.unicoder.cn/forum.php?mod=forumdisplay&amp;fid=77</link>
    <description>Latest 20 threads of 多媒体-影视</description>
    <copyright>Copyright(C) Discuz! BBS</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sat, 16 May 2026 06:42:21 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.unicoder.cn/static/image/common/logo_88_31.gif</url>
      <title>Discuz! BBS</title>
      <link>https://www.unicoder.cn/</link>
    </image>
    <item>
      <title>一个pdf翻译工具</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=508</link>
      <description><![CDATA[pip install uv
uv tool install --python 3.12 pdf2zh
ref：  https://github.com/PDFMathTranslate/PDFMathTranslate]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Wed, 26 Nov 2025 06:09:49 +0000</pubDate>
    </item>
    <item>
      <title>Sony playstation portal</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=422</link>
      <description><![CDATA[云游戏:
已有爱好者微信群，请加teggwx]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Mon, 01 Sep 2025 17:40:59 +0000</pubDate>
    </item>
    <item>
      <title>旧显示器，文字有重影怎么办？</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=368</link>
      <description><![CDATA[调整分辨率与缩放设置，启用ClearType，更新显卡驱动
电脑桌面字体模糊有重影的问题，通常可通过以下步骤解决：

‌关键解决方法：‌

‌调整显示分辨率为系统推荐值‌：在桌面右键选择“显示设置”，将分辨率设为推荐值（如1920×1080），这是消除字体模糊的基础。分辨 ...]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Thu, 22 May 2025 11:39:27 +0000</pubDate>
    </item>
    <item>
      <title>NAS 选择 RAID ? 能把读写速度提高一倍</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=229</link>
      <description><![CDATA[RAID0能把硬盘读写速度提高一倍。‌RAID0（‌Redundant Arrays of Independent Disks 0）‌是一种磁盘阵列技术，‌通过将数据分割成多个数据块并交叉写入多个硬盘中，‌实现数据的并行读写，‌从而提高整体的读写速度。‌在RAID0模式下，‌如果使用两块硬盘，‌那么存储 ...]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Mon, 05 Aug 2024 18:13:37 +0000</pubDate>
    </item>
    <item>
      <title>Docker 安装群晖</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=218</link>
      <description><![CDATA[群晖（Synology）是一个基于Linux的NAS操作系统，可以通过Docker安装。以下是通过Docker安装群晖的基本步骤：

确保你的系统上已经安装了Docker。

创建一个Docker容器并为其分配足够的资源。

配置容器以启动群晖Docker镜像。

以下是一个简单的例子，展示如何使用Dock ...]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Mon, 29 Jul 2024 06:52:06 +0000</pubDate>
    </item>
    <item>
      <title>ffmpeg 常用命令行</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=209</link>
      <description><![CDATA[命令格式：
ffmpeg -i [输入文件名] [参数选项] -f [格式] [输出文件]
-acodec:音频选项
-vcodec:视频选项

1.获取视频信息
ffmpeg -i video.mp4

2.转视频/音频格式
视频格式转换
mp4转flv ffmpeg -i test.mp4 -f flv output.flv

h264转mp4 ffmpeg -i test.h264 -f mp ...]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Tue, 02 Jul 2024 13:12:06 +0000</pubDate>
    </item>
    <item>
      <title>ffmpeg 参数说明</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=208</link>
      <description><![CDATA[1、 -f
-f  被用于指定输入和输出格式，这个参数后面需要跟着一个具体的格式名称或文件扩展名，格式名称常见包括mp4, avi, mov, flv 等等

指定输入格式为mp4:
ffmpeg -f mp4 -i input.mp4 output.avi

指定输出格式为flv：
ffmpeg -i input.avi -f flv output.flv

需 ...]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Mon, 01 Jul 2024 23:00:02 +0000</pubDate>
    </item>
    <item>
      <title>ffmpeg 快速抓屏DXGI技术， 基于screen-capture-recorder</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=207</link>
      <description><![CDATA[基于screen-capture-recoder抓屏的升级screen-capture-dxgi:   原抓屏技术为GDI，适用于Win7，WinXP，现在升级为DXGI，适用于Win10.
原程序源码：https://codeload.github.com/rdp/ ... ows-free/zip/master
新程序二进制文件：screen-capture-record升级dxgi版本-资源
 ...]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Mon, 01 Jul 2024 22:25:25 +0000</pubDate>
    </item>
    <item>
      <title>各路由器重置地址</title>
      <link>https://www.unicoder.cn/forum.php?mod=viewthread&amp;tid=192</link>
      <description><![CDATA[华硕：    192.168.50.1     （无法自动获取）
梅林：    192.168.1.1       （可自动获取）        router.asus.com
小米：    192.168.31.1       （可自动获取）]]></description>
      <category>多媒体-影视</category>
      <author>admin</author>
      <pubDate>Fri, 22 Mar 2024 12:22:19 +0000</pubDate>
    </item>
  </channel>
</rss>