Android :: Serializing Video Files?

Mar 11, 2010

I want to send video files from the Android via network to server. How can I serialize video files in Android?

Android :: Serializing video files?


Android :: Directory To Store Files Generated By App (audio, Video Files Or Images)?

Apr 24, 2009

Can anybody advice what is the recommended directory to store files generated by your application: audio files, video files or some images.

If the phone contains SD card, it is clear that files should be saved there, but if there is no any external storage. where would you recommend to save to?

View 2 Replies View Related

Android :: Where Can I Put Some Media Files / Image / Video?

Feb 20, 2009

I am using the latest git code to play with. I wanna know how can I play with GALLERY, it always complain "NO MEDIA FOUND", I do wanna know where and how can I put some JPG, BMP or something other media stuff into the emulator/Real device to make the GALLERY app display them.

View 2 Replies View Related

Android :: How To Play .flv Video Files In Droid App?

Jan 6, 2010

I was just wondering if it's possible out of the box or via a library.

View 1 Replies View Related

Android :: Streaming Video Files Endless Buffering

Dec 14, 2009

I have a problem streaming live video files. When I stream a file say of duration 5 minutes, it stops after streaming 2 to 3 minutes and enters in to endless buffering state. The VideoViews's OnBufferingListener is endlessly executed, however it shows that the buffering is not progressing anymore : MediaPlayer's buffer says it has buffered for example 90% whereas when I call videoView.getBufferPercentage(), I get something very low, like 1% or 5% ... After a while in the buffering state, the application crashes. It seems like the buffering is taking all the memory.

View 2 Replies View Related

General :: What Video Player For Android Can Play MKV Files

Apr 10, 2014

What video player for Android can I download for free that can play mkv files?

View 2 Replies View Related

Android :: Converting Audio Files (.3gp) To Video And Uploading To YouTube

Jun 11, 2010

I have an audio file in .3gp format on my Android device which I wish to upload to YouTube. I know that YouTube is a video upload site and that I need to convert this sound file to video. I just want an image to display all the time the audio is playing. Google tells me there are number of tools that can help me. But I want to do this via java code from my Android device.

View 7 Replies View Related

Android :: Making Video Files Ready For Playback Over HTTP

Jul 9, 2010

I am working on an Android application which is supposed to play videos over HTTP on Android devices. Before we setup a server to host the video files just wanted a few things clarified: As per the developer documentation, Android supports .mp4 and .3gp container formats for video.

The audio-video codec used for our media files is H.263(video) and AAC LC (Audio). I did a little experiment and passed URL of one of the video files to the MediaPlayer class and got the following error: Command PLAYER_INIT completed with an error or info PVMFErrContentInvalidForProgressivePlayback.

From the docs, I came to know that for progressive playback, the video's index (e.g moov atom) should be at the start of the file. How do we make our videos Android-ready? What are the different considerations that we need to make?

View 4 Replies View Related

Android :: Video Files Playback Over HTTP - Supporting Formats

Jul 9, 2010

I am working on an Android application which is supposed to play videos over HTTP on Android devices. Before we setup a server to host the video files just wanted a few things clarified: As per the developer documentation, Android supports .mp4 and .3gp container formats for video. If we use H.263(video) - AAC LC (Audio) audio-video codec used for our media files will we be able to play the video by passing the URL to MediaPlayer class?

I did a little experiment and passed URL of one of the video files(.mp4) to the MediaPlayer class and got the following error:
Command PLAYER_INIT completed with an
error or info
PVMFErrContentInvalidForProgressivePlayback

From the docs, I came to know that for progressive playback, the video's index (e.g moov atom) should be at the start of the file. Questions:
1. How do we make our videos Android-ready?
2. What are the different considerations that we need to make?

View 1 Replies View Related

HTC Droid Eris :: Video - Play Fancast.com Files On Android OS

Nov 15, 2009

Can you play any fancast.com files on the Android OS? Thinking about getting the HTC Droid Eris but want to know all about it first so don't make a mistake. I am currantly running Skyfire for my browser and it works really fast and can watch any video.

View 3 Replies View Related

Android : Need To Record Audio - Video Recording Files In 3gp / Mp4 Format

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

Android :: Best Approach To Transfer Large Video Files Into Byte Array?

Apr 8, 2010

Please could anyone suggest an approach for transferring a >2MB video from a ContentResolver into a Bytestream, without running out of memory?
See question: http://stackoverflow.com/questions/2599305/android-outofmemoryerror-w...

Here's the current code, which throws an OutOfMemoryError on the byteBuffer.write(buffer, 0, len) line when transferring large videos:

// get bytestream to upload videoByteArray = getBytesFromFile(cR, fileUriString);
public static byte[] getBytesFromFile(ContentResolver cR, String fileUriString) throws IOException { Uri tempuri = Uri.parse(fileUriString);
InputStream is = cR.openInputStream(tempuri);
byte[] b3 = readBytes(is); is.close(); return b3;
}

View 18 Replies View Related

Android :: Stagefright Mediaextractor - How To Detect Interlaced Streams In Video Files

Sep 7, 2010

Is it possible to detect scan type (progressive or interlaced) of a video file in stagefright?

I see below listed fields are query-able with metadata of file through stagefright, but not scan-type which i guess is avaiable in MP4 file header. Any hint on how to detect scan-type of video file at Stagefright player driver? Or is it available in opencore?

CODE:.............................

View 3 Replies View Related

Android : Extending GMail App / Unable To Upload Non-picture - Video Files

Jun 20, 2009

Is there any information on extending the GMail application? Or better yet, I for one am relatively irritated that I can't email or upload non-picture/video files that I might have on my SD card, so I'd like to create a provider of some sort to enable the ability to upload or email any arbitrary file. Any ideas?

View 2 Replies View Related

Software Which Can Copy All Audio And Video Files From Android Device To System?

Dec 2, 2013

I've to develop a software which can copy all audio and Video files from Android device to System

What to cover first, either linux kernel or android system interface.

Do I need to learn linux kernel programming or android system interface only

This backup could be possible from one of the medium via USB cable or WiFi or other form of connectivity.

View 1 Replies View Related

HTC EVO 4G :: Where Are Recorded Video Files?

Jun 5, 2010

Where are the video file that you take when you record a video? I have searched high and low with Astro on the phone and the SD card. I want to pull a raw one off and get a MediaInfo log.

View 2 Replies View Related

HTC EVO 4G :: Can't Play Video Files On EVO

Jun 7, 2010

I heard that you can play Mp4 video's on the EVO so i transferred some videos from my PC and non of them play on the EVO, the most i have been able to get is sound but the screen is black, some of them won't even play the sound.I also tried a DivX file but that one doesn't even show up on the phone at all.So which files actually play on the phone? this is my first Android phone i have always had Windows Mobile or iphone and have never had so much problems trying to playback a video on a smartphone.

View 18 Replies View Related

HTC EVO 4G :: Way To Get Video Files Back?

Jun 5, 2010

I've seen many Batman and other HD movies played on the EVO or streamed from the EVO to a television, but I can't access video files I put on the sd card; they just don't exist (similar problem with music). So, one file was mkv, and the other was avi/windows movie file. Neither show up and I've moved their locations around in various folders in the directory. What am I missing? This is my first Android phone.

View 4 Replies View Related

HTC Incredible :: Video Files Over 2 GB Won't Play

Jun 3, 2010

i noticed while putting movies on my phone storage, not my sd card, that files over 2 GB will not play. This is bad.I converted The Dark Knight the same as I convert all my other movies. It would play on my computer but not my phone. So I checked the "Details" of the file on my phone. It showed as 0 bytes when it should have been 2.09 GB.I thought it might have converted with an error. Converted it two more times. Same problem. Finally I converted it with a lower resolution to bring the size down to 1.8 GB. It plays just fine.

View 7 Replies View Related

HTC EVO 4G :: Put Video Files On Formatted SD Card?

Jun 4, 2010

On my formatted card I have a folder labeled, "Android" and another "LOST.DIR." There are a few sub folders in the Android directory but no clear place to put video files.

View 8 Replies View Related

HTC EVO 4G :: What's Size Limit For MP4 Video Files?

Jun 6, 2010

I have a 4GB video file in MP4 format. I can view the file perfectly on my laptop using the defaul media player "Media Player Classic". I have transferred the file to my new EVO and I cannot watch the video...it does not even load. I get the following error message "Cannot Play Video" and "Sorry, this video cannot be played." I have tried the default video player, doubletwist and Meridian with no success. I then thought perhaps the single 4GB file is too large for the EVO and Android apps. I am about to break the file into smaller chunk, but I wanted to ask the forum first.

View 14 Replies View Related

HTC EVO 4G : Audio From Mp4 Video Files Not Playing

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

HTC EVO 4G :: Pix - Video - Music & Other Files - Erasing From MicroSD?

Jun 21, 2010

It appears as if my Evo is erasing files from the Sandisk card that was pre-installed. For instance, I'll copy over wallpapers from my laptop last night & this morning, only half appear in that folder in the gallery. I'm wondering if this issue is somehow attributed to the update that was supposed to fix the "SD card" issue. I might just try re-formatting my card & see if that solves it.

View 1 Replies View Related

Samsung Captivate :: DD 5.1 - Video Files Encoding

Aug 10, 2010

I'm able to get AC3 5.1 @ 640kbs to work with my 720p mkv files but the playback skips about every 5 seconds. Other then that It looks and sounds amazing! I've tried encoded to 5.1 FLAC and AAC but it doesn't play at all. Are there any encoding experts out there?

View 1 Replies View Related

2.1 Update :: Upgraded SE X8 / Now Cant Play Video Files

Nov 30, 2010

I upgraded my SE X8 from A 1.6 to 2.1 and now i cant play video files! when i had version 1.6 the video was awesome HD and stuff,but now i can see the icon ,name,time but when i click on the video file it says that it can't open it,even the 2 videos that were on the phone don't work any more it says the same thing as opening any other video file.I've tried reinstalling the 2.1,and even repairing it but that didn't solve the problem.

View 7 Replies View Related

HTC EVO 4G :: Movies - Conversion Of Own Personal Video Files

Apr 30, 2010

I was hoping to get some feedback from those of you that are in the advanced category for smart phones and media. I'm gearing up and converting many of MY videos to MP4 in anticipation of watching them on my hotly anticipated new 4.3" screen.

In regards to the conversion of MY OWN PERSONAL video files, I had some questions about settings and the process for making the videos look and work best on the EVO. I realize this question may be premature given the actual phone isn't out yet, but any info would be appreciated.

My main questions are:

What settings people would recommend for using Handbrake to convert the files?

What settings will use the least amount of resources and memory, but will still give the best playback/image possible on the EVO?

I have waded through what information I could find on the forum in the EVO and Incredible (closest match to EVO) threads and this is what I have found in case anybody wants to use it for reference. THANK YOU to those posters who have supplied the following information, it got me moving in the right direction.

--------------------------------------------------------------
Programs available to convert files to MP4: (These were the most often mentioned, but there are several others available to use as well)

XDA Video Encoder - [APP][REF]Video encoding GUI - xda-developers - Appears to be free, instructions listed on web link for operation. "Probably the best movie converter. It was designed for converting movies for older, less powerful HTC devices, but it'll still work great for this. Extremely easy to use, and produces small file sizes with great quality. Works pretty fast too. I highly, highly recommend it for converting movies to use on Android phones."

ANYDVD - SlySoft AnyDVD | any dvd, region free, dvd copy, copy dvd movies, dvd decoder, dvd ripper, macrovision, dvd copying software - Free for 30 days, $$$$ after that. Updates often and seems to be regarded as best for decrypting files.

DVDFAB - DVD Copy Software from DVDFab | Copy DVD to PSP, DVDR or iPod - Free for 30 days, then $$$ after that. Full package looks like you are able to convert files for all kinds of uses and to all types of players including mobile phones.

Handbrake - HandBrake - Free. Seems to be the most popular here on the android forums. Easy to use and so far has done a good job converting for me.

DVD Converter Pro - InterTech DVD Converter - Free trial, then $$$. 1 comment from poster "I'm impressed by dvd converter pro. It worked well and seems to be much easier than dvd fab. I will probably purchase it. The incredible photo viewer is not well suited for displaying videos though."
-------------------------------------------------------------

Tutorials and help: (comments taken from different threads here on Android forum)

- Well, to get the ball rolling, here are quite a few guides on how to convert DVD to an Android-compatible standard h.264 video format.

Guide, How To, Tutorial and Article list - VideoHelp.com

- Jerry Hildenbrand (Gbhill) @ Android Central wrote a great how to on video conversion using Handbrake as well as Double Twist on the Android Central Blog. It can be found HERE

- Here is another, more general, video guide which discusses Handbrake in more detail for those who are interested. I personally like the step by step guides with lots of pictures... I consider myself an advanced technical user, but sometime I just want to get it done quick.

Here are the links...
The Power User's Guide to Video Encoding with Handbrake | Maximum PC
The Last DVD and Blu-Ray Ripping Guide You'll Ever Need | Maximum PC

- If you use Handbrake uncheck the CABAC entropy coding under the Advanced tab. You can use it but it will limit you to yxflash (a pay for app) for the player. I can say that if you rip correctly it looks amazing on the AMOLED screen of the N1. Even Spongebob has amazing color resolution. But thats 90mb per 12 minute episode.

-------------------------------------------------------------

Resolution and Settings Comments:

- I am using DVDfab. I have read that they should be set to 480 X 272 and use the preset setting for apple tv. I have encoded some to mp4 and they play really nice on my computer.

- I would recommend keeping either the horizontal or vertical resolution the highest the device supports which is either 800 vertical or 480 horizontal.

- Isn't the display resolution 800x480? So how did someone come up with 480x272? To get the best picture, I would set it to 800x? or ?x480.

- If it's a dvd, you want to keep it at the same resolution of 720x480 (or whatever the 4:3 res is, but why you would use 4:3 on this phone is beyond me).

- 480x272 is a 16:9 aspect ratio, the ratio that is used for movies as that is the ratio that most widescreen TVs are (e.g., 720p = 1280x720 and 1080p = 1920x1080).

I think 800x450 would be the best resolution as it's the closest to the native resolution of the display while still maintaining the 16:9 aspect ratio -- important if you want the proportions to look how they're supposed to look. Use this resolution only if the source video is HD, though. DVD videos are 720x480 (I think 720x400 is viewable since it's letterboxed), so encoding to any resolution above that would just be a waste of space by creating a larger video file.

- Yeah, I just encoded a movie using 480x272 and it looks great. Even on my 15" laptop screen. I think when you encode a movie from 5 gig to 800 meg it probably doesnt make a huge difference if you use 800 x 480 or 480 x 272.

- Folks, this is a classic debate, but recording the vids at full Inc resolution has drawbacks with no gains (unless you also plan on playing them back on a bigger display- laptop is example).

1. Drains more battery
2. Takes up over twice the space

Please download a video for PSP or iPod, iPhone (or format one this) and you will see that you will not notice a difference between the vids on a 3.7" display.

Output from the composite video of the Inc will also not use the higher resolution either. Composite video out is the constraint there. Not 720p output like the EVO (that puppy will run hot outputting that res to a display).

- So i put a movie on my Incredible that was set to the 480 x 272. It plays perfect and looks perfect.

View 27 Replies View Related

Samsung Fascinate :: Can't Download Video (.avi) Files / How To Fix?

Sep 13, 2010

I've tried to download 2 different .avi files, and I get "cannot download. the content is not supported on this phone". eh? SF is supposed to be able to play .avi, correct? anyone know what the deal could be?

View 2 Replies View Related

Samsung Behold 2 :: How To Encode Video Files?

Mar 28, 2010

Watching video via my Behold2 is my major thing. But I have to convert the videos and put that in the sdcard when I want to watch something. Is there a better way? Plus, I couldn't find any good mencoder front-end for linux. Can any one let me know an easy way to convert video files on linux?

View 1 Replies View Related

HTC EVO 4G :: How To Convert Protected Video Files On Phone?

Nov 25, 2010

does anyone know how to put protected movies off of places like itunes or amazon on to an evo.

View 2 Replies View Related

HTC Wildfire :: Flash Video Files Not Working / How To Fix?

Aug 19, 2010

New android user switched over from WM Liking the wildfire, anyone can tell me how to open .swf & .flv on wildfire even though it has HTC flash player.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved