我一直在尝试使用ctypes包在python中编写程序,如下所示:
import ctypes
import os
os.system("hello.mp3")
然后打开Groove音乐并播放音乐文件。
但是我要做的是在播放后关闭音乐文件。
我该怎么做?
P.S是否使用ctypes包都没关系
答案 0 :(得分:0)
尝试mp3play模块。
https://pypi.org/project/mp3play/
那会是
<?php
include"configration.php";
?>
<?php
$query = $_GET['query'];
$min_length = 1;
//echo $query;exit();
if (strlen($query) >= $min_length) { // if query length is more or equal minimum length then
//echo "success";exit();
$query = htmlspecialchars($query);
$query = mysqli_real_escape_string($conn, $query);
$sql = "SELECT * FROM table2
WHERE title LIKE '%".$query."%' order by date DESC";
$raw_results = mysqli_query($conn, $sql) or die(mysql_error());
if (mysqli_num_rows($raw_results) > 0) { // if one or more rows are returned do following
while ($res = mysqli_fetch_array($raw_results)) { ?>
<?php echo $res['title'] ?> // Place where result comes ..
<?php }
}
}
?>