windows-7,media-player,mobile-phoneRelated issues-Collection of common programming errors
Wedge
windows-7 virtualization vhd sysprep
I booted from a VHD on my laptop and hoped to sysprep this image, but it didn’t let me do it. I got a fatal error during the process. I used the following command: sysprep /generalize /shutdown. My question is it possible at all to sysprep a VHD without any HyperV or virtual PC technology?
John Moore
windows windows-7 sysprep
I’m trying to Sysprep a Windows 7 Pro workstation. When I run sysprep a receieve the error”A fatal error occurred while trying to sysprep the machine”I’ve tried all the work aroundsuninstall msdtc stop the windows media network service change HKLM\System\Setup\Status\SysprepStatus\GeneralizationState from 4 to 7The error indicates that sysprep has been run before and it hasn’t this would be the first time.Any ideas would be much appreciated.ThanksJohn
bogus
c++ visual-studio-2010 windows-7 glut
I am trying to compile a project containing code from this page.I added the required glut32.lib to Linker -> Input -> Additional Dependencies.glut32.lib : fatal error LNK1107: invalid or corrupt file: cannot read at 0x1E9EBuild FAILED.I’ve read that it’s a common mistake to link to the dll instead of the lib, but here I correctly linked to the .libWhat’s the reason for this error?
tcaswell
python windows-7 numpy cython
I’m trying to speed up the answer here using Cython. I try to compile the code (after doing the cygwinccompiler.py hack explained here), but get a fatal error: numpy/arrayobject.h: No such file or directory…compilation terminated error. Can anyone tell me if it’s a problem with my code, or some esoteric subtlety with Cython?Below is my code. Thanks in advance:import numpy as np import scipy as sp cimport numpy as np cimport cythoncdef inline np.ndarray[np.int, ndim=1] fbincount(np.ndarray[np.i
guntbert
installation grub2 dual-boot windows-7 13.04
I’m tring to install Ubuntu 13.04 on my PC desktop but when i restart my PC, it always starts Windows 7, without asking me which OS would i like to run. I’ve got 3 HDD on my PC:1: 200 GB with Win72: 500 GB partitioned with 4 GB of Swap, 150 GB of /home and the others GB of root (/)3: 2 TB of various data.I think the bootloader is on sda1, and during the installation of Ubuntu 13.04 I can’t install a bootloader on that partition (fatal error). What should i do?Here my log of fdisk:ubuntu@ubuntu:~
Vy Duong
grub2 dual-boot windows-7 boot-partition
I have a dual boot computer with Windows 7 and Ubuntu on it. Recently, i was working in Windows7 and my flash had crashed, the computer rebooted to Error: Partition not found. Grub Rescue> I had made a Ubuntu Live CD and attempted at fixing it with lilo, I managed to get Grub to work, but I wasn’t able to boot up windows. I went back into Live and did sudo apt-get install syslinux; sudo dd if=/usr/lib/syslinux/mbr.bin of=/dev/sda. I did the same again after rebooting into Windows7 had failed sin
Traceless
installation dual-boot grub2 partitioning windows-7
I am using an HP dv7 computer with a 1TB drive with Win7 and a new 120GB SSD that I intend to run Kubuntu on for my physics stuff. I am having trouble installing GRUB though. I first created two partitions on the SSD: main (111GB) and swap (9GB). Then, using Kubuntu boot USB (clean formatted with new iso and good md5sum), I tried to install on Manual to reduce the chance I’d screw up my Windows. I really really don’t want to screw up my Windows. I set main (sdb1) as / and swap (sdb2) as swap, l
guntbert
12.04 dual-boot usb windows-7 bootloader
Sorry if the subject is already answered but I can’t find the solution.I have a clean install of Windows 7 and I installed ubuntu 12.04 as a second OS. I manually did this partitioning using gpartedThe boot loader of Windows is in /dev/sda1 and the Ubuntu one is in /dev/sda3. When I installed Ubuntu and first booted, the PC just didn’t boot at all, so I booted from Ubuntu live CD and repaired GRUB.After that:When the ext4 Filesystem is flagged: boot: Ubuntu starts with the boot loader but works
guntbert
installation boot grub2 windows-7
I am trying to install Ubuntu on HP probook 4530s x64 system. There is Windows 7 already installed and I want to remove it.So I format C:\ drive and make to partition \ (sha2) and swap (sha4) from it. There is also a partition sha1 (300mb) for MBR (don’t know what is it), I just leave it.After some time I get fatal error unable to install grub and so I choose partition sha1 when it asks.Now at boot time there is option to choose windows 7 but not for Ubuntu and Windows is also removed.I also try
SoftTimur
windows virtualbox windows-7 cd iso
I have already dual systems : Windows 7 and Ubuntu installed on my laptop. The Windows 7 had been installed when I bought this laptop, and I don’t have a CD.I just installed VitrualBox under Ubuntu, hoping that I could install another Windows in this virtual machine, so that I could run some applications of Windows even under Ubuntu.But it seems that I need a CD or ISO of Windows to boot inside this virtual machine. Otherwise, there is an error: FATAL: No bootable medium found! System halted. My
nathanjosiah
android media-player
Last night, my app was working just fine streaming audio files with the MediaPlayer in my app. I came into work this morning and it wont play any audio file and I havent changed my code at all. here is the error log that it is printing out via LogCat. Also, the audio file still exists and plays fine on anything else.07-07 09:53:39.559: INFO/ActivityManager(92): Starting activity: Intent { flg=0x800000 cmp=com.Harvest.org/.MediaPlayerActivity (has extras) } 07-07 09:53:39.759: ERROR/(840): A comp
damian
android permissions media-player videoview file-descriptor
currently I’m working on an application that’s supposed to download videos onto its internal storage (unfortunately they do NOT have a sd card) and simply play them. What I’ve tried so far is:Standard VideoView, set the /data/data/…/file.mp4 as path – did not work. Use MediaPlayer with a SurfaceView, use path or file descriptor – did not work.What I’m having here right now is a slightly modded version of the VideoView, which has the following changes:if(mUri != null){mMediaPlayer.setDataSource
mudit
android media-player
I have 3 audio file in sdcard in the following path /sdcard/media. I am using the follow code to play that file one after another. Any suggestions mPlay.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {// TODO Auto-generated method stubLog.d(“Before resume”,””);mPlayer = new MediaPlayer();File dir = new File(“/sdcard/media”);String[] children = dir.list();if (children == null) {// Either dir does not exist or is not a directoryContext context = getApplicationConte
Prime
android path media-player
I need to get the full path to a file somewhere on the phone (any location) and play it with MediaPlayer. ive heard of using a file chooser for Android (by launching an intent).In the test code, I just copied a resource to a another file, got the path and passed it to AudioVideoEntry (as i show later, a very simple and thin wrapper around MediaPlayer)Here’s the test code I’ve written:private String ave_path;private String ave_file_name = “my_media_content”;private InputStream ave_fis;private Out
udm_coder
android video-streaming media-player live-streaming file-descriptor
I am new to android programming and have found myself stuck I have been researching various ways to stream live video from phone to phone and seem to have it mostly functional, except of course the most important part: playing the stream. It appears to be sending the stream from one phone, but the second phone is not able to play the stream.Here is the code for the playing sidepublic class VideoPlayback extends Activity implements Callback { MediaPlayer mp; private SurfaceView mPreview; private
Andro Selva
android audio media-player
i download audio file from local server ,and save local path then play that audio file i have issue,i had attached coding and logcat please anyone solve my problem,Codingpublic class MainActivity extends Activity {private static String fileName = “e1.mp3″;String PATH=”/data/data/com.ismail/sounds”;@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);try {// URL url = new URL(“http://commonsware.com/misc/test2.3gp”);URL url =
Praful Bhatnagar
android media-player samsung-mobile socketexception
we are playing media through a local proxy server. Everything was fine till the new Samsung Grand device. In that specific device we are getting a Socket exception as following:4-04 17:55:35.646: W/System.err(15187): java.net.SocketException: sendto failed: ECONNRESET (Connection reset by peer) 04-04 17:55:35.646: W/System.err(15187): at libcore.io.IoBridge.maybeThrowAfterSendto(IoBridge.java:506) 04-04 17:55:35.646: W/System.err(15187): at libcore.io.IoBridge.sendto(IoBridge.java:475) 04-
rekire
android proxy stream media-player android-2.2
SDK level 8 (Froyo) has introduced the native capability for the MediaPlayer to connect to a streaming source, like Shoutcast. Previous SDK versions were able to do workarounds, such as run a local proxy on the device (see NPR).I took the same approach as NPR and am using a StreamProxy. However, NPR first checks if the currently running SDK is less than 8. If so, it uses the proxy. Otherwise, it connects directly.My StreamProxy requests metadata from the Shoutcast server, so it does not simply r
user3461829
android media-player audio-streaming live-streaming
I am trying to play an mp3 audio file from sd card, using the path and the filename of the audio file to get its Uri.I have a Spinner populated with the tracks names stored in sd card. When an item is selected, the following code will be executed:final Uri uri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI; OnItemSelectedListener listener = new OnItemSelectedListener(){@Overridepublic void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {TextView tv
coder_For_Life22
android media-player
I am using MediaPlayer to try and stream video and audio from youtube.How do i go about doing this using the url:Example:http://www.youtube.com/watch?v=SgGhtjKWLOE&feature=feedrecEDIT: LogCat Error i get when using your methods.09-04 22:22:30.140: INFO/AwesomePlayer(85): setDataSource_l(‘http://www.youtube.com/watch?v=I3jv0IF9n6A’) 09-04 22:22:30.140: INFO/NuHTTPDataSource(85): connect to www.youtube.com:80/watch?v=I3jv0IF9n6A @0 09-04 22:22:30.250: INFO/NuHTTPDataSource(85): connect to m.yo
Sebastian Paaske Tørholm
windows-7 media-player mobile-phone
I have a Samsung Galaxy S II, which when connected to my Windows 7 computer acts as a “Portable Media Player”Whenever I try to copy a video onto the device, it prompts if I want to convert it, like so:This gets quite annoying in the long run, so I’d like to disable it.Is there a way to disable these prompts?
Vaman Kulkarni
ubuntu mobile-phone nokia tethering
I have Ubuntu 10.10 on a laptop which does not have WiFi, due to which I cannot connect to wireless network through my laptop. I was wondering if I could connect my phone (Nokia X6) to the laptop via the data cable and surf the net on my laptop using the wifi on my phone.. Nokia X6 is a symbian S60v5 based phone.Is it possible to achieve this?Thanks in advance for your inputs.
Kev
windows-7 windows-mobile mobile-phone
Does Windows 7 come with the Windows Mobile Device Centre included, or do I have to download and use Windows Mobile Device Centre 6.1?I’ve got a Palm Treo 750v running Windows Mobile 6, are there any known issues?
Manga Lee
windows photos file-transfer mobile-phone sony-ericsson
Do I have to download a proprietary program (possible a bloat ware) from Sony Ericsson or is it possible to only install USB drivers and mount the phone to the file system or something similar?UPDATE: I’ve downloaded and installed the USB drivers for the V600i phone but they don’t mount the phone as a drive in the file system. There is however a OBEX driver installed and i’ve tried using the OBEX commander to transfer the files. That does not work because it won’t connect to the phone, but it ca
Web site is in building