Media :: Possible To Record Audio / Video WHILE Playing Music?
Aug 11, 2010
i'm big into freestyling. i have over 1500 instrumentals on my phone.i can't figure out how to play them and record myself (either audio or video) at the same time.i figure i'm either gonna have to download a new music player that won't close or a video/audio recorder that won't close the "Music" player that came with my evo.and before anyone goes tryin to be smart, i realize that even if i was able to accomplish such an action the quality would probably be really low due to speaker and mic being so close.my intent is more of a "on the fly lyric composition" rather than a " put myself on youtube to show everyone how awesome i am"
View 2 Replies
Dec 20, 2009
How to record audio into ogg format?
View 1 Replies
View Related
Oct 19, 2010
We have one of the crappiest microphones on any phone. I tried to record some audio/video with my camera and the freakin audio SUCKS! what gives? is there anything HTC/Sprint/we can do about this?
View 8 Replies
View Related
Oct 31, 2008
Any way to record video on the G1?
View 5 Replies
View Related
Jun 4, 2010
I'm new in Android development and I have the next question/problem. I'm playing around with the Media Recorder class to record just audio from the microphone. I'm following the steps indicated in the official ://developer.android.com/reference/android/media/MediaRecorder.html
So I have a method that initializes and configure the Media Recorder object in order to start recording. Here you have the code:
//initializes audio recorder
//configure the input sources
mrecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
//set the output format
mrecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
//set the audio encoding
mrecorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT)
View 1 Replies
View Related
Jul 19, 2010
I need to record audio and video files in 3gp/mp4 format at the same file and same time.
When i run my application file is created with videofile.3gp but video does not record in sd card on the emulator.please let me clear one thing does video records on the emulator? if i run this code on android supported device do these error clear.
Please help me. I am new to this topic.please find the code and errors below.
package com.video;
* @copy Rights
* audio.java
* sample code for Eminosoft Developerworks Article
* Android development Team
* www.eminosoft.cm
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import android.media.MediaPlayer;
import android.media.MediaRecorder;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.provider.Settings;
import android.util.Log;
import android.view.View;
import android.widget.Button;
public class video extends Activity {
public MediaRecorder mrec = null;
private Button startRecording = null;
private Button stopRecording = null;
private static final String TAG = "SoundRecordingDemo";
File audiofile;
File video;
private MediaPlayer mMediaPlayer;}
View 2 Replies
View Related
Aug 27, 2010
I'm tired of this random .3gp crap.. is there anyways I can record in avi or wmv? I hate having to convert my videos to avi when I connect my phone to my computer. I have an incredible.
View 2 Replies
View Related
Jan 17, 2010
I have searched the whole group but wasn't able to find a answer for my problem.I want to record audio from the microphone, apply some audio signal processing and than save the processed audio data in a compressed format.I figured out, how to record audio uncompressed but now I wonder if I can use some api functions to store this data in a supported compressed format.
View 4 Replies
View Related
May 1, 2011
Is there an app that allows you to record the screen in video format? I know sill pictures can be done...
View 9 Replies
View Related
Apr 24, 2010
Every time I go on youtube the video plays but the audio doesn't.
View 1 Replies
View Related
Nov 23, 2010
Ok so I see a lot of people saying they are having problems with video playback when importing from their SD Card but Im having the opposite problem.
I just switched over from the Metro PCS Samsung Code which is a Windows 6 phone to EVO and I put my SD Card in my EVO. All my music files play and the mp4 video files play but the audio from the mp4 video files dont. Does anyone have advice on how to fix this?
View 9 Replies
View Related
Jul 5, 2010
I would like to find an media player that plays videos but when I minimize or multitask to another app I want the videos audio to keep playing like pandora does. The reason for this is bcuz I rip videos off of youtube to mainly listen to the music.
View 2 Replies
View Related
Jan 12, 2010
when I'm listening to audio with my headphones through cherry rplayer and then take the headphones out to use the speaker, I don't get any sound...I have to shut down any audio players functions before I get any sound out of the speaker. Not sure if cherry rplayer is the culprit or not. I have also noticed that my media player starts playing by itself...
View 8 Replies
View Related
May 12, 2013
I'm having a strange problem with my Xperia Arc (4.0.4) that is proving very difficult to track down. When playing music or videos, after a random amount of time (maybe 20 or 30 seconds) the phone will crash and restart. This happens regardless of the app I use - Play Music, Poweramp, MX Player and YouTube. I have restored my phone using CWM to a much earlier backup, but eventually (within a few hours) the problem returns.
My only other recourse would seem to be a full wipe and return to stock firmware, which would be a major PITA and obviously wouldn't support if this is a hardware issue or some conflict with an update
View 4 Replies
View Related
Apr 29, 2014
Having problem playing music through audio device using bluetooth (Bluetooth Speaker).. (All cm7 based rom for galaxy pocket have this problem)
Device: Galaxy Pocket
Rom: Reincarnation V5
Kernel: Getux Kernel V1
Added Tweaks: KickAss kernelizer,Supercharger
View 3 Replies
View Related
Nov 4, 2009
Did anyone try playing audio/video through http/rtsp. I am having a problem with either of the approach.... I am getting an error Command PLAYER_INIT completed with PVMFError I some cases I got Command PLAYER_INIT completed with PVMFErrorContentInvalidForProgressiveDownoload.
Can some one explain what is the problem. The code snippet I am using is given below. Code...
The code works fine when I say mVideoView.setVideoPath("/sdcard/vv.3gp"); but not able to play if I give a rtsp/http urls. In case of http it says PVMFErrorContentInvalid for progressive download.
Can some body tell me what is the problem. Can you please post the code if someone has been successful in playing audio/video through http/rtsp.
View 8 Replies
View Related
Aug 21, 2010
Invoked device native player to play audio file, it opens android native player on top of the application but when selecting to back out or return to the application, device automatically stops playing the current media.
Sample code:
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"audio/*");
startActivity(intent);
How can I implement so that Device should continue to play audio in the background when selecting to back out or return to the application
View 1 Replies
View Related
Nov 6, 2009
This is driving me nuts. When I get in my car and bluetooth connects to the phone, the phone automatically starts playing music through BT audio. I cant find any way to disable it short of turning off BT and I dont want to do that as I play Slacker through BT. Is there an option Ive missed to disable autoplaying of music?
Than
View 2 Replies
View Related
Jan 8, 2010
I need to know if there is a way for watching .WMV videos on the HTC Hero.
I already know that it will play MPEG-4 videos without a problem (you can use the RealPlayer Video Downloader to download HQ/HD videos from places like Youtube and it automatically saves them to MPEG-4 format).
However, I want to transfer some files like music videos onto my HTC Hero and having tried several times, using the RealPlayer Converter, to convert the .mpg files to .wmv, I can't watch them on the Hero.
However, I recently looked at one of the threads (I think on a different forum) and he said that he could watch videos in WMV format using 750kbps on resolution 480x320. But RealPlayer only allows for 768kbps and resolution as 480p HD as the nearest possible (which was the setting I ordinarily chose).
The other strange thing is that when I go onto the Albums part of the phone to see if I can view any videos, it shows a thumbnail image of the music video (a preview image of the video) and when I play it, I can hear the music, but the video itself fails to appear.
View 4 Replies
View Related
May 22, 2010
So, this is a specific and detailed question, so I'll try and briefly give context:
I currently have the prior generation of this stereo in my car (don't know my exact model number, but it's basically the same as this deck: Sony stereo.
I connect my iPhone 3G through the usb port and it charges my phone while allowing me to access my library and scroll through artists, playlists, etc through the deck.
I am curious if the Droid Incredible can also do this.
I went into the Verizon store today to try and see if it can work and we had some issues. My deck can access the phone's contents if, when connecting via USB, I have the phone behave as mass storage (the rep was doing it, but said when you connect the phone you have the option to treat the connection as mass storage). So, I could flip through what seemed to be directory folders through the stereo, but I believe I could only access the phone's internal memory. I haven't had an android phone, but I assume mp3's are stored on the microSD. Am I correct in this?
So, is there any way to make the SD accessible through the car stereo so I can play my mp3s while charging my phone through the USB? This is actually a fairly big deal to me as I am in my car a lot and using the phone in this way with my stereo keeps me from having to have 3 different chargers (1 for home, 1 for messenger bag, 1 for car). But, if there's a way to do it, I can get away from the iPhone, and more importantly, ATT.
I know I have the aux input, but I'm only concerned with the USB for its charging properties.
View 7 Replies
View Related
Oct 25, 2009
I have a strange thing going on with my htc hero, whenever someone calls they can hear james blunt your beautiful playing over the ringing until I pick up. I haven't set it up and i dont have any james blunt on my phone even after a full restore it still does it. Any ideas how to stop it from doing this?
View 2 Replies
View Related
Sep 25, 2010
This is 2010. I refuse to believe that you can only play movies/video files that have .avi, .mp4, .mpg, .mkv file formats by converting. I remember Sony was slow on the uptake when they started the media server streaming which I use on a daily basis at home now.Is there a program that will decode the files as you stream them? Any codecs to install on the Droid X? I have thousands of video files and "converting" is time consuming not to mention creating two video files instead of one to play on devices. Converting is BS and whoever thought "Let's just have the users convert the video files" needs to take a long walk off a short pier.
View 5 Replies
View Related
Nov 23, 2009
When I'm using my DROID to listening to music, after a minute the phone goes to sleep to save battery and it just cuts of the music. Is there a way to change it so even though its sleeping it'll still play? I'm going on a long trip soon and I don't want to have to take my iPod too.. I just want one music device so I have less chords.
View 4 Replies
View Related
Jan 23, 2010
Is there something I can buy that will let me play music from my Droid on my home stereo? Maybe some sort of bluetooth or wifi adapter with rca jacks in them.
View 8 Replies
View Related
Nov 23, 2009
my moto droid will no longer play music, whether it be from pandora or my memory card... did i mess something up in the settings or do i need it replaced
View 1 Replies
View Related
Aug 21, 2012
I am new to using Android. I am wondering if there is any video (MP4) player that would continue playing the video even when I use the home button to switch to other apps (e.g. check my email etc.) I have a few documentaries/discussions to watch and sometimes minimize the video player to check other information on my phone and the video stops.
Any Video players that continue playing when minimized. I know that the Meridian Player continues playing when the screen is switched off, but it stops if you press the home button.
(I use a Galaxy Nexus with Jelly Bean.)
View 2 Replies
View Related
Sep 26, 2010
Just made a video with my Motorola xt701. played it on the phone and computer it has no sound. Made another one with me screaming in the phone, still no sound. Do you have to have a mic plugged in to get sound when making a video or is there another issue??
View 8 Replies
View Related
Nov 5, 2010
Just got a Droid Incredible and love the phone so far. I have a problem however playing back video that I recorded. The video comes out fine but there is no audio track. Same happens when I play back on my PC. I have read some forum posts that were similar but none of the solutions offered have worked for me. I have done the following: Played back on phone, WMP, VLC and Quicktime.
View 7 Replies
View Related
Apr 6, 2009
We are trying to test the Music Player (Music.apk) with Monkey. We have added the permissions in AndroidManifest.xml of Camera application (Camera.AK): <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" /> In the same file, we have added intent for MovieView Activity: <category android:name="android.intent.category.MONKEY" /> We use the following commands: # Launch the Music Player am start -a android.intent.action.MAIN -n com.android.music/ com.android.music.VideoBrowserActivity # Launch Monkey to test Music player monkey -p com.android.music -v -v -v 500 But, we get the error message: "// Rejecting start of Intent.
View 2 Replies
View Related
Feb 22, 2010
Is there anyway to stop the stock music player on my HTC Hero from playing songs? I have a bluetooth headset and whenever I use the controls on the headset it activates the stock music player instead of the one I downloaded.
View 2 Replies
View Related