{"id":947562,"date":"2024-12-26T23:52:44","date_gmt":"2024-12-26T15:52:44","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/947562.html"},"modified":"2024-12-26T23:52:47","modified_gmt":"2024-12-26T15:52:47","slug":"python%e5%a6%82%e4%bd%95%e8%b0%83%e7%94%a8potplayer","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/947562.html","title":{"rendered":"python\u5982\u4f55\u8c03\u7528potplayer"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25083303\/4de41f90-3c4e-4416-b51e-94ac74f00346.webp\" alt=\"python\u5982\u4f55\u8c03\u7528potplayer\" \/><\/p>\n<p><p> <strong>\u5728Python\u4e2d\u8c03\u7528PotPlayer\u53ef\u4ee5\u901a\u8fc7\u591a\u79cd\u65b9\u5f0f\u5b9e\u73b0\uff0c\u4e3b\u8981\u5305\u62ec\u4f7f\u7528\u547d\u4ee4\u884c\u63a5\u53e3\u3001\u901a\u8fc7Python\u7684subprocess\u6a21\u5757\u3001\u4ee5\u53ca\u5229\u7528\u7b2c\u4e09\u65b9\u5e93\u8fdb\u884c\u81ea\u52a8\u5316\u64cd\u4f5c\u3002subprocess\u6a21\u5757\u662f\u6700\u5e38\u7528\u7684\u65b9\u5f0f\uff0c\u56e0\u4e3a\u5b83\u53ef\u4ee5\u76f4\u63a5\u5728Python\u4e2d\u6267\u884cPotPlayer\u7684\u547d\u4ee4\u884c\u6307\u4ee4\uff0c\u5e76\u83b7\u53d6\u8f93\u51fa\u3002<\/strong>\u4e0b\u9762\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528subprocess\u6a21\u5757\u6765\u8c03\u7528PotPlayer\u3002<\/p>\n<\/p>\n<p><p>\u4e00\u3001\u4f7f\u7528SUBPROCESS\u6a21\u5757\u8c03\u7528PotPlayer<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u7b80\u4ecb<\/strong><\/p>\n<\/p>\n<p><p>Python\u7684subprocess\u6a21\u5757\u662f\u4e00\u4e2a\u5f3a\u5927\u7684\u5de5\u5177\uff0c\u5141\u8bb8\u4f60\u5728Python\u811a\u672c\u4e2d\u542f\u52a8\u548c\u4e0e\u5176\u4ed6\u7a0b\u5e8f\u4ea4\u4e92\u3002PotPlayer\u652f\u6301\u547d\u4ee4\u884c\u64cd\u4f5c\uff0c\u56e0\u6b64\u6211\u4eec\u53ef\u4ee5\u901a\u8fc7subprocess\u6a21\u5757\u5728Python\u4e2d\u8c03\u7528PotPlayer\u5e76\u63a7\u5236\u5176\u884c\u4e3a\u3002<\/p>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u5b89\u88c5\u548c\u51c6\u5907<\/strong><\/p>\n<\/p>\n<p><p>\u786e\u4fdd\u4f60\u7684\u7cfb\u7edf\u4e0a\u5df2\u7ecf\u5b89\u88c5\u4e86PotPlayer\uff0c\u5e76\u4e14\u53ef\u4ee5\u901a\u8fc7\u547d\u4ee4\u884c\u542f\u52a8\u5b83\u3002\u901a\u5e38\u53ef\u4ee5\u5728\u5b89\u88c5\u76ee\u5f55\u4e0b\u627e\u5230PotPlayer\u7684\u53ef\u6267\u884c\u6587\u4ef6\uff0c\u5e76\u6dfb\u52a0\u5176\u8def\u5f84\u5230\u7cfb\u7edf\u73af\u5883\u53d8\u91cf\u4e2d\u3002<\/p>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u57fa\u672c\u7528\u6cd5<\/strong><\/p>\n<\/p>\n<p><p>\u4f7f\u7528subprocess\u6a21\u5757\u8c03\u7528PotPlayer\u975e\u5e38\u7b80\u5355\u3002\u4ee5\u4e0b\u662f\u4e00\u4e2a\u57fa\u672c\u7684\u793a\u4f8b\uff0c\u5c55\u793a\u5982\u4f55\u4f7f\u7528subprocess.run()\u6765\u542f\u52a8PotPlayer\u5e76\u64ad\u653e\u4e00\u4e2a\u89c6\u9891\u6587\u4ef6\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import subprocess<\/p>\n<h2><strong>PotPlayer\u7684\u8def\u5f84<\/strong><\/h2>\n<p>potplayer_path = &quot;C:\\\\Program Files\\\\DAUM\\\\PotPlayer\\\\PotPlayerMini64.exe&quot;<\/p>\n<h2><strong>\u89c6\u9891\u6587\u4ef6\u7684\u8def\u5f84<\/strong><\/h2>\n<p>video_path = &quot;C:\\\\Videos\\\\example.mp4&quot;<\/p>\n<h2><strong>\u4f7f\u7528subprocess\u542f\u52a8PotPlayer<\/strong><\/h2>\n<p>subprocess.run([potplayer_path, video_path])<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u901a\u8fc7subprocess.run()\u51fd\u6570\u4f20\u9012\u4e86PotPlayer\u7684\u8def\u5f84\u548c\u8981\u64ad\u653e\u7684\u89c6\u9891\u6587\u4ef6\u8def\u5f84\uff0c\u4ece\u800c\u5b9e\u73b0\u4e86\u5728Python\u4e2d\u8c03\u7528PotPlayer\u5e76\u64ad\u653e\u89c6\u9891\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u4e8c\u3001\u4f7f\u7528\u547d\u4ee4\u884c\u53c2\u6570\u63a7\u5236PotPlayer<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u5e38\u7528\u547d\u4ee4\u884c\u53c2\u6570<\/strong><\/p>\n<\/p>\n<p><p>PotPlayer\u652f\u6301\u591a\u79cd\u547d\u4ee4\u884c\u53c2\u6570\uff0c\u5141\u8bb8\u7528\u6237\u63a7\u5236\u5176\u884c\u4e3a\u3002\u4f8b\u5982\uff0c\u7528\u6237\u53ef\u4ee5\u6307\u5b9a\u64ad\u653e\u5217\u8868\u3001\u63a7\u5236\u97f3\u91cf\u3001\u8bbe\u7f6e\u7a97\u53e3\u6a21\u5f0f\u7b49\u3002\u5e38\u7528\u7684\u547d\u4ee4\u884c\u53c2\u6570\u5305\u62ec\uff1a<\/p>\n<\/p>\n<ul>\n<li><code>\/fullscreen<\/code>\uff1a\u542f\u52a8\u65f6\u5168\u5c4f\u64ad\u653e\u3002<\/li>\n<li><code>\/volume<\/code>\uff1a\u8bbe\u7f6e\u521d\u59cb\u97f3\u91cf\uff08\u8303\u56f40-100\uff09\u3002<\/li>\n<li><code>\/add<\/code>\uff1a\u5c06\u6587\u4ef6\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u4e2d\uff0c\u800c\u4e0d\u662f\u7acb\u5373\u64ad\u653e\u3002<\/li>\n<li><code>\/playlist<\/code>\uff1a\u6307\u5b9a\u64ad\u653e\u5217\u8868\u6587\u4ef6\u3002<\/li>\n<\/ul>\n<\/li>\n<li>\n<p><strong>\u4f7f\u7528\u793a\u4f8b<\/strong><\/p>\n<\/p>\n<p><p>\u5047\u8bbe\u6211\u4eec\u5e0c\u671b\u542f\u52a8PotPlayer\u5e76\u4ee5\u5168\u5c4f\u6a21\u5f0f\u64ad\u653e\u4e00\u4e2a\u89c6\u9891\uff0c\u540c\u65f6\u5c06\u97f3\u91cf\u8bbe\u7f6e\u4e3a50\u3002\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u4ee3\u7801\u5b9e\u73b0\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import subprocess<\/p>\n<p>potplayer_path = &quot;C:\\\\Program Files\\\\DAUM\\\\PotPlayer\\\\PotPlayerMini64.exe&quot;<\/p>\n<p>video_path = &quot;C:\\\\Videos\\\\example.mp4&quot;<\/p>\n<h2><strong>\u4f7f\u7528\u547d\u4ee4\u884c\u53c2\u6570\u542f\u52a8PotPlayer<\/strong><\/h2>\n<p>subprocess.run([potplayer_path, video_path, &quot;\/fullscreen&quot;, &quot;\/volume&quot;, &quot;50&quot;])<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u901a\u8fc7\u5728subprocess.run()\u51fd\u6570\u4e2d\u6dfb\u52a0\u547d\u4ee4\u884c\u53c2\u6570\uff0c\u5b9e\u73b0\u4e86\u5bf9PotPlayer\u64ad\u653e\u884c\u4e3a\u7684\u7ec6\u7c92\u5ea6\u63a7\u5236\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u4e09\u3001\u81ea\u52a8\u5316PotPlayer\u64cd\u4f5c<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u4f7f\u7528\u7b2c\u4e09\u65b9\u5e93<\/strong><\/p>\n<\/p>\n<p><p>\u9664\u4e86subprocess\u6a21\u5757\uff0c\u7528\u6237\u8fd8\u53ef\u4ee5\u4f7f\u7528\u7b2c\u4e09\u65b9\u5e93\uff08\u5982pyautogui\uff09\u8fdb\u884c\u66f4\u590d\u6742\u7684\u81ea\u52a8\u5316\u64cd\u4f5c\u3002pyautogui\u5e93\u5141\u8bb8\u7528\u6237\u6a21\u62df\u952e\u76d8\u548c\u9f20\u6807\u8f93\u5165\uff0c\u4ece\u800c\u5b9e\u73b0\u5bf9PotPlayer\u754c\u9762\u7684\u76f4\u63a5\u63a7\u5236\u3002<\/p>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u5b89\u88c5\u548c\u4f7f\u7528pyautogui<\/strong><\/p>\n<\/p>\n<p><p>\u9996\u5148\u9700\u8981\u5b89\u88c5pyautogui\u5e93\uff0c\u53ef\u4ee5\u901a\u8fc7pip\u8fdb\u884c\u5b89\u88c5\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install pyautogui<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5b89\u88c5\u5b8c\u6210\u540e\uff0c\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u4ee3\u7801\u5b9e\u73b0\u7b80\u5355\u7684\u81ea\u52a8\u5316\u64cd\u4f5c\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import subprocess<\/p>\n<p>import pyautogui<\/p>\n<p>import time<\/p>\n<p>potplayer_path = &quot;C:\\\\Program Files\\\\DAUM\\\\PotPlayer\\\\PotPlayerMini64.exe&quot;<\/p>\n<p>video_path = &quot;C:\\\\Videos\\\\example.mp4&quot;<\/p>\n<h2><strong>\u542f\u52a8PotPlayer<\/strong><\/h2>\n<p>subprocess.Popen([potplayer_path, video_path])<\/p>\n<h2><strong>\u7b49\u5f85PotPlayer\u542f\u52a8<\/strong><\/h2>\n<p>time.sleep(5)<\/p>\n<h2><strong>\u4f7f\u7528pyautogui\u6a21\u62df\u5168\u5c4f\u5feb\u6377\u952e<\/strong><\/h2>\n<p>pyautogui.hotkey(&#39;alt&#39;, &#39;enter&#39;)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528subprocess.Popen()\u542f\u52a8PotPlayer\uff0c\u7136\u540e\u4f7f\u7528pyautogui\u5e93\u6a21\u62df\u5168\u5c4f\u5feb\u6377\u952e\uff08Alt+Enter\uff09\u3002\u901a\u8fc7\u8fd9\u79cd\u65b9\u5f0f\uff0c\u53ef\u4ee5\u5b9e\u73b0\u5bf9PotPlayer\u7684\u81ea\u52a8\u5316\u63a7\u5236\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u56db\u3001\u5904\u7406PotPlayer\u7684\u8f93\u51fa<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u83b7\u53d6\u8f93\u51fa<\/strong><\/p>\n<\/p>\n<p><p>\u5728\u67d0\u4e9b\u60c5\u51b5\u4e0b\uff0c\u4f60\u53ef\u80fd\u9700\u8981\u83b7\u53d6PotPlayer\u7684\u8f93\u51fa\u4fe1\u606f\uff0c\u4ee5\u4fbf\u8fdb\u884c\u8fdb\u4e00\u6b65\u7684\u5904\u7406\u3002\u53ef\u4ee5\u4f7f\u7528subprocess.PIPE\u6355\u83b7\u8f93\u51fa\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import subprocess<\/p>\n<p>potplayer_path = &quot;C:\\\\Program Files\\\\DAUM\\\\PotPlayer\\\\PotPlayerMini64.exe&quot;<\/p>\n<p>video_path = &quot;C:\\\\Videos\\\\example.mp4&quot;<\/p>\n<h2><strong>\u6355\u83b7\u8f93\u51fa<\/strong><\/h2>\n<p>process = subprocess.Popen([potplayer_path, video_path], stdout=subprocess.PIPE, stderr=subprocess.PIPE)<\/p>\n<p>stdout, stderr = process.communicate()<\/p>\n<p>print(&quot;Standard Output:&quot;, stdout)<\/p>\n<p>print(&quot;Standard Error:&quot;, stderr)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528subprocess.Popen()\u5e76\u4f20\u9012stdout\u548cstderr\u53c2\u6570\uff0c\u5c06PotPlayer\u7684\u6807\u51c6\u8f93\u51fa\u548c\u9519\u8bef\u8f93\u51fa\u6355\u83b7\u5230stdout\u548cstderr\u53d8\u91cf\u4e2d\u3002<\/p>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u5904\u7406\u8f93\u51fa<\/strong><\/p>\n<\/p>\n<p><p>\u6355\u83b7\u5230\u7684\u8f93\u51fa\u4fe1\u606f\u53ef\u4ee5\u7528\u4e8e\u65e5\u5fd7\u8bb0\u5f55\u3001\u9519\u8bef\u5904\u7406\u7b49\u3002\u4f8b\u5982\uff0c\u53ef\u4ee5\u5c06\u9519\u8bef\u4fe1\u606f\u8bb0\u5f55\u5230\u65e5\u5fd7\u6587\u4ef6\u4e2d\uff0c\u4ee5\u4fbf\u540e\u7eed\u5206\u6790\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import subprocess<\/p>\n<p>potplayer_path = &quot;C:\\\\Program Files\\\\DAUM\\\\PotPlayer\\\\PotPlayerMini64.exe&quot;<\/p>\n<p>video_path = &quot;C:\\\\Videos\\\\example.mp4&quot;<\/p>\n<p>process = subprocess.Popen([potplayer_path, video_path], stdout=subprocess.PIPE, stderr=subprocess.PIPE)<\/p>\n<p>stdout, stderr = process.communicate()<\/p>\n<p>if stderr:<\/p>\n<p>    with open(&quot;error_log.txt&quot;, &quot;w&quot;) as log_file:<\/p>\n<p>        log_file.write(stderr.decode())<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u5c06\u6355\u83b7\u5230\u7684\u6807\u51c6\u9519\u8bef\u8f93\u51fa\u5199\u5165\u5230\u4e00\u4e2a\u540d\u4e3aerror_log.txt\u7684\u6587\u4ef6\u4e2d\uff0c\u7528\u4e8e\u8bb0\u5f55\u53ef\u80fd\u51fa\u73b0\u7684\u9519\u8bef\u4fe1\u606f\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u4e94\u3001\u603b\u7ed3<\/p>\n<\/p>\n<p><p>\u901a\u8fc7\u4ee5\u4e0a\u65b9\u6cd5\uff0c\u7528\u6237\u53ef\u4ee5\u5728Python\u4e2d\u5b9e\u73b0\u5bf9PotPlayer\u7684\u8c03\u7528\u548c\u63a7\u5236\u3002subprocess\u6a21\u5757\u63d0\u4f9b\u4e86\u4e00\u4e2a\u7b80\u5355\u4e14\u5f3a\u5927\u7684\u63a5\u53e3\uff0c\u5141\u8bb8\u7528\u6237\u901a\u8fc7\u547d\u4ee4\u884c\u53c2\u6570\u63a7\u5236PotPlayer\u7684\u884c\u4e3a\u3002\u540c\u65f6\uff0cpyautogui\u7b49\u7b2c\u4e09\u65b9\u5e93\u53ef\u4ee5\u8fdb\u4e00\u6b65\u6269\u5c55PotPlayer\u7684\u81ea\u52a8\u5316\u64cd\u4f5c\u80fd\u529b\uff0c\u4f7f\u5f97\u7528\u6237\u80fd\u591f\u5b9e\u73b0\u66f4\u590d\u6742\u7684\u63a7\u5236\u3002\u7528\u6237\u53ef\u4ee5\u6839\u636e\u81ea\u5df1\u7684\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\uff0c\u4ee5\u4fbf\u5728Python\u4e2d\u7075\u6d3b\u5730\u4f7f\u7528PotPlayer\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u5728Python\u4e2d\u542f\u52a8PotPlayer\u5e76\u64ad\u653e\u89c6\u9891\uff1f<\/strong><br \/>\u8981\u5728Python\u4e2d\u542f\u52a8PotPlayer\u5e76\u64ad\u653e\u89c6\u9891\uff0c\u53ef\u4ee5\u4f7f\u7528<code>subprocess<\/code>\u6a21\u5757\u3002\u9996\u5148\uff0c\u786e\u4fddPotPlayer\u7684\u5b89\u88c5\u8def\u5f84\u5df2\u77e5\u3002\u7136\u540e\uff0c\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u4ee3\u7801\u5b9e\u73b0\uff1a  <\/p>\n<pre><code class=\"language-python\">import subprocess\n\n# PotPlayer\u7684\u5b89\u88c5\u8def\u5f84\npotplayer_path = r&quot;C:\\Program Files\\DAUM\\PotPlayer\\PotPlayerMini64.exe&quot;\n# \u8981\u64ad\u653e\u7684\u89c6\u9891\u6587\u4ef6\u8def\u5f84\nvideo_path = r&quot;C:\\path\\to\\your\\video.mp4&quot;\n\n# \u542f\u52a8PotPlayer\u5e76\u64ad\u653e\u89c6\u9891\nsubprocess.run([potplayer_path, video_path])\n<\/code><\/pre>\n<p>\u786e\u4fdd\u5c06\u8def\u5f84\u66ff\u6362\u4e3a\u4f60\u672c\u5730\u7684\u5b9e\u9645\u8def\u5f84\u3002<\/p>\n<p><strong>Python\u811a\u672c\u5982\u4f55\u63a7\u5236PotPlayer\u7684\u64ad\u653e\u548c\u6682\u505c\u529f\u80fd\uff1f<\/strong><br \/>\u8981\u63a7\u5236PotPlayer\u7684\u64ad\u653e\u548c\u6682\u505c\uff0c\u53ef\u4ee5\u4f7f\u7528PotPlayer\u7684\u547d\u4ee4\u884c\u53c2\u6570\u6216\u901a\u8fc7\u6a21\u62df\u952e\u76d8\u8f93\u5165\u3002\u4f7f\u7528\u547d\u4ee4\u884c\u53c2\u6570\u7684\u65b9\u5f0f\u76f8\u5bf9\u7b80\u5355\uff0c\u793a\u4f8b\u5982\u4e0b\uff1a  <\/p>\n<pre><code class=\"language-python\">import subprocess\n\n# \u64ad\u653e\nsubprocess.run([potplayer_path, &#39;\/play&#39;, video_path])\n# \u6682\u505c\nsubprocess.run([potplayer_path, &#39;\/pause&#39;])\n<\/code><\/pre>\n<p>\u5177\u4f53\u7684\u547d\u4ee4\u884c\u53c2\u6570\u53ef\u4ee5\u53c2\u8003PotPlayer\u7684\u5b98\u65b9\u6587\u6863\u3002<\/p>\n<p><strong>\u5982\u4f55\u5728Python\u4e2d\u5b9e\u73b0PotPlayer\u7684\u591a\u5b9e\u4f8b\u64ad\u653e\uff1f<\/strong><br \/>\u5982\u679c\u4f60\u60f3\u5728Python\u4e2d\u5b9e\u73b0PotPlayer\u7684\u591a\u5b9e\u4f8b\u64ad\u653e\uff0c\u53ef\u4ee5\u4e3a\u6bcf\u4e2a\u5b9e\u4f8b\u521b\u5efa\u4e00\u4e2a\u65b0\u7684\u8fdb\u7a0b\u3002\u4ee5\u4e0b\u662f\u4e00\u4e2a\u793a\u4f8b\u4ee3\u7801\uff1a  <\/p>\n<pre><code class=\"language-python\">import subprocess\n\nvideo_files = [r&quot;C:\\path\\to\\video1.mp4&quot;, r&quot;C:\\path\\to\\video2.mp4&quot;]\npotplayer_path = r&quot;C:\\Program Files\\DAUM\\PotPlayer\\PotPlayerMini64.exe&quot;\n\nfor video in video_files:\n    subprocess.Popen([potplayer_path, video])\n<\/code><\/pre>\n<p>\u8fd9\u6837\u53ef\u4ee5\u540c\u65f6\u64ad\u653e\u591a\u4e2a\u89c6\u9891\u6587\u4ef6\uff0c\u6bcf\u4e2a\u89c6\u9891\u90fd\u4f1a\u5728\u65b0\u7684PotPlayer\u5b9e\u4f8b\u4e2d\u6253\u5f00\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u5728Python\u4e2d\u8c03\u7528PotPlayer\u53ef\u4ee5\u901a\u8fc7\u591a\u79cd\u65b9\u5f0f\u5b9e\u73b0\uff0c\u4e3b\u8981\u5305\u62ec\u4f7f\u7528\u547d\u4ee4\u884c\u63a5\u53e3\u3001\u901a\u8fc7Python\u7684subp [&hellip;]","protected":false},"author":3,"featured_media":947569,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[37],"tags":[],"acf":[],"_links":{"self":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/947562"}],"collection":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/comments?post=947562"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/947562\/revisions"}],"predecessor-version":[{"id":947570,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/947562\/revisions\/947570"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/947569"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=947562"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=947562"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=947562"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}