HTC Droid Eris :: Preview 2.2 - Free Downloads And Streaming Video
May 22, 2010Videos - Free video downloads and streaming video - CNET TV
View 2 RepliesVideos - Free video downloads and streaming video - CNET TV
View 2 RepliesDoes anyone know any apps for free music downloads?
View 18 Replies View RelatedI am looking to figure out how to stream a video off my website through the browser. I know it is possible since I've seen some of those mobile porn sites do it, I just cant figure out what format this is in or how to get the video to play.
View 4 Replies View RelatedI just published a free preview of a 3D implementation of the classic snake game. It works smoothly enough on Milestone, please let me know how it works on other phone. You can download it searching for Snake3D.
View 1 Replies View RelatedDon't know what happened but the my downloads section looks like it does after a factory reset, with all the free downloads not listed, the difference though is that if I search for them in the market, they all still show as installed. anyone have any ideas?
View 2 Replies View RelatedHow do I get rid of the history of downloads in the Market that I have uninstalled?
View 5 Replies View RelatedSince flashing to a 2.* rom and back a few times i am now back on fresh 1.1 and I am trying to do a few updates and download new apps but everything hangs. It just says either authorizing credit card for paid or starting download for free apps. I have even let it go over night and it never finished.
View 6 Replies View RelatedBeen pretty hit or miss for me, but Im trying to watch a stream of NFL network on atdhe.net, and it crashes the browser every time. Anyone else have any luck streaming live stuff?
View 6 Replies View RelatedCan the Dx output anything other than pics/videos captured with the phone? My Dx is in the mail and was wondering if I should buy a cable because I want to use it to stream youtube or other video content from the phone to tv. If it can not be done now, is that a hardware issue or a software issue that could be changed later? Also so I can control the phone while it is connected to the tv I wanted to get a 15' cable. This is the only one I see but it does not say if it is type D or not. Does that matter? Amazon.com: Amzer Micro HDMI High Speed Male to HDMI Male Cable for HTC EVO 4G (15 Feet): Cell Phones & Service
View 2 Replies View RelatedI have used Handbrake to convert almost all our DVD's to MP4 (web enabled) on a 2 Terabyte network drive.
I'm looking for some "streaming application" that will allow me to watch any of these movies on my phone over the internet.
Is there such a thing? I know I have to have a dedicated computer (gateway) to access the movies, but after searching Google for the past hour, I've given up.
The only thing I can find is Orb, but the reviews aren't the greatest.
Has anyone done this successfully, and willing to share how they did it?
I am trying to develop an android application which will be able to record a video and send it in real time to a remote computer. The computer then will play it live. I have managed to establish a connection between the android and the computer, and to record a video on the android phone. My problem is, how will I be able to send this video to the computer? Does anyone have an idea?
View 5 Replies View RelatedIs there any way to preview the different notification sounds? I've been trying to figure this out for several weeks but have decided to ask the experts here for help.
View 11 Replies View RelatedFor the life of me since the OTA I cannot find the my downloads folder.
View 3 Replies View RelatedHow do you delete PDF Viewer downloads?I went to settings>>apps>>manage apps>>pdf viewer>>clear data Still didnt clear the downloads.
View 1 Replies View RelatedSo for the past 2 days I've been getting a server error when trying to load "My Downloads" in the Market (Eris 1.5). Nothing loads and I get a popup that says: "Attention, A server error has occured. Retry, or cancel and return to the previous screen." It's also fairly intermittent, sometimes I get this error, sometimes not. I've not seen this before yesterday.
View 6 Replies View RelatedI thought the 2.1 android market showed a few images of each app like the iphone app store. I dont see any preview pics.
View 1 Replies View RelatedHow do i delete something i downloaded off the internet, like from my email onto my phone, and i used the stock browser.
View 3 Replies View RelatedTempMon is reporting 107 F + while streaming. That's battery temp, of course.CPU is significantly hotter than that.I've tried clocks from 700 up to 1100 and can't get it any cooler.at 700 its barely responsive enough to be functional.at 1200 it reboots.
View 2 Replies View RelatedAT&T evidently has a new campaign to get iPhone users to reduce the amount of video streaming and other data intensive activities they engage in, and may start charging them based on data use.
Their network just can't handle current data levels, and AT&T can't get it updated fast enough to handle the data requirements.
Kind of blows up the ads they've had on TV showing how great their network coverage "really is."
Already been giving my iPhone buddy a hard time showing off my Droid to him, now I'm really going to have some fun at his expense.
is it just me or does it take everyone 20 minutes for a download to start?
View 9 Replies View RelatedI have tried 1.5 video API. I could not make it work. It even can't do preview. Following is my code:
private boolean initializeVideo() { Log.v(TAG, "initializeVideo");
if(Common.mRecordedVideo!=null && Common.mRecordedVideo.exists ()) Common.mRecordedVideo.delete();
File sDir = Environment.getExternalStorageDirectory();
String baseDir = sDir + Common.BASE_DIR;
File sampleDir=new File(baseDir);
if(!sampleDir.canWrite()) // Workaround for broken sdcard support on the device.
sampleDir = new File("/sdcard/sdcard");
try { Common.mRecordedVideo = File.createTempFile(PREFIX, EXTENSION, sampleDir);
} catch(IOException e) { AlertDialog.Builder ab = new AlertDialog.Builder (VideoRecord.this);
ab.setTitle("Error"); ab.setMessage(" can't write audio data to storage");
ab.setIcon(R.drawable.error); ab.setNeutralButton("Close", new DialogInterface.OnClickListener()
{ public void onClick(DialogInterface dialog, int whichButton) { } } );
ab.show(); return false;
} Intent intent = getIntent(); releaseMediaRecorder();
if (mSurfaceHolder == null) { Log.v(TAG, "SurfaceHolder is null");
return false; } mMediaRecorder = new MediaRecorder();
mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mMediaRecorder.setVideoSource (MediaRecorder.VideoSource.CAMERA);
mMediaRecorder.setOutputFormat (MediaRecorder.OutputFormat.THREE_GPP);
mMediaRecorder.setMaxDuration(MAX_RECORDING_DURATION_MS);
mMediaRecorder.setOutputFile (Common.mRecordedVideo.getAbsolutePath());
// Use the same frame rate for both, since internally
// if the frame rate is too large, it can cause camera to become
// unstable. We need to fix the MediaRecorder to disable the support
// of setting frame rate for now.
mMediaRecorder.setVideoFrameRate(20);
mMediaRecorder.setVideoSize(352,288);
mMediaRecorder.setVideoEncoder (MediaRecorder.VideoEncoder.H263);
mMediaRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());
try { mMediaRecorder.prepare();
} catch (IOException exception) { Log.e(TAG, "prepare failed for " );
releaseMediaRecorder(); // TODO: add more exception handling logic here
return false; } mMediaRecorderRecording = false;
return true; } private void startVideoRecording() {
Log.v(TAG, "startVideoRecording"); if (!mMediaRecorderRecording) {
// Check mMediaRecorder to see whether it is initialized or not.
if (mMediaRecorder == null && initializeVideo() == false ) {
Log.e(TAG, "Initialize video (MediaRecorder) failed."); return;
} try { mMediaRecorder.setOnErrorListener(this);
mMediaRecorder.setOnInfoListener(this);
mMediaRecorder.start();
// Recording is now started } catch (RuntimeException e) {
Log.e(TAG, "Could not start media recorder. ", e); return;
} mMediaRecorderRecording = true;
mRecordingStartTime = SystemClock.uptimeMillis();
updateRecordingIndicator(true);
mRecordingTimeView.setText("");
mRecordingTimeView.setVisibility(View.VISIBLE);
mHandler.sendEmptyMessage(UPDATE_RECORD_TIME);
setScreenTimeoutInfinite();
} }
Can anyone share or point me to working example of "video capture" with preview?
View 2 Replies View RelatedI have created a CapturePreview class and CameraManager class the following way:
CapturePreview:
CODE:...
The video preview works fine this way until the sub-activity starts in the main activity. When sub-activity starts the CaptureView.surfaceDestroyed(SurfaceHolder holder) is called and the video preview stops. Then when the sub-activity closes the CaptureView.surfaceCreated(SurfaceHolder holder) is executed, but the video preview doesn't start.
Does anyone know how to fix the problem in order to successfully restart video preview after surfaceDestroyed(SurfaceHolder holder) is executed?
Seeing as 2.1 doesn't play Flash what are some alternatives for free streaming movies? Ive tried Divx however 2.1 doesn't support that either. I use to use Stagevu, a similar website would be great!
I tried Veoh however finding a full length movie is more difficult than finding a hooker with a full set of teeth.
I watch alot of foreign tv from sites like South Korea - Watch free live TV . I was wondering if theres any app for android ( i have a samsung galaxy) that lets you watch such links. Most of these are
mms:// addresses linked to streaming videos. like : mms://118.46.233.19/tvs
I have yxflash app installed on my phone. It loads the links but the video freezes after 1 second. Are there any other apps that work?
Short video preview of the Epic 4G by Engadget. YouTube - Samsung Epic 4G preview
View 1 Replies View Relatedgood free music streaming website that works on the hero? I use jango on the pc but its not working on the hero. Used to be free but ones like spotify are not.
View 4 Replies View RelatedWe have 2 Eris Droids in our house, when I download something it also shows up in the other droid in the house which is the main phone line for our verizon account. Is there anyway to change that or no?
View 30 Replies View RelatedA number of previous posts imply that attempts to apply bespoke image processing on a Camera preview are hamstrung by a buggy API and will in any event run extremely slowly due to the need to manually decode the preview buffer. Can anyone comment on whether it is possible to use the video recorder as an alternative means of achieving this?
View 2 Replies View RelatedThe following is the overriden dispatchDraw in a subclass of SurfaceView. I'm trying to change the parameters of the Surface(getting only a subsection of the video preview.
CODE:......
Why does the above code not alter the dimensions of the SurfaceView at all?