在python3.4中,我试图在Linux中使用vlc打开一个"wav“文件。这是我的代码:
import os,time
os.system("cvlc audio/some.wav")
time.sleep(3) #audio was one and half sec
a = 3+3
print (a)
它播放音频,但之后就不播放了。我该怎么做才能让他们这么做?更确切地说,我应该做什么来关闭vlc程序?
随着问题的解决,它也将非常感激知道是否有更容易的方式来播放音频在代码中,特别是在python3.4中?(平台独立代码将更加感激!)
我试图让Ubuntu直接引导到控制台。我不想完全删除GUI,因为有时我仍然需要它来训练车轮,但是如果我不需要它,我不想处理它。在以前的版本中,我可以很容易地通过编辑/etc/default/grub来实现这一点,但由于某种原因,它无法在15.10上工作。
这是我的/etc/default/grub文件:
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this fi
我正在使用Android版本1.2.2,并将api级别更新为23。在使用api 19之前,我可以创建模拟器并运行项目。当更新我的Android中的api级别并尝试创建模拟器时,我得到了这个错误。我正在使用Linux操作系统。
**以下代码**
ERROR: 32-bit Linux Android emulator binaries are DEPRECATED, to use them
you will have to do at least one of the following:
- Use the '-force-32bit' option
我一直在遵循Chris Simmonds的“掌握嵌入式linux编程”一书中的命令。我已经创建了工具链、内核zImage和busybox文件系统。当我将它们组合在一起在QEMU上运行时,它应该会显示一个root shell提示。 当我运行该命令时,我得到以下结果。 /bin/sh: can't access tty; job control turned off
input: ImExPS/2 Generic Explorer Mouse as /devices/platform/amba/amba:fpga/10007000.kmi/serio1/input/input2 当我
我遇到了一些麻烦,让Command /Developer/Cocotron/1.0/Linux/i386/gcc-4.3.1/bin/i386-ubuntu-linux-gcc failed with exit code 1进入链接阶段。现在,我可能是一个疯狂的人,但我似乎能够在Xcode3中获得更具体的东西?如果我没记错的话,我曾经收到过这样的有用的警告:
warning: libpulse-simple.so.0, needed by /Developer/Cocotron/1.0/Linux/ i386/Frameworks//libSDL-1.2.so, not found (try
如何在Windows7命令行中编写这个类似linux的循环?
for docker_path in `ls | grep "docker$"`
do
cd $docker_path
mvn -B -f pom.xml clean deploy -Pdocker
cd ..
done
我需要找到所有的*docker/目录,执行mvn命令并返回到patern目录,但对于Windows7系统。