How to play videos in android from assets folder or raw folder?
Asked Answered
G

13

72

I am trying to play a video in android emulator I have the video in my assets folder as well as the raw folder But after doing some research still i cant play video in my emulator i am working on android 2.1 My video format is mp4 so i don't think that should be a problem Could anyone just give me an example code so that i can understand a bit more?

The problem is that the VideoView that I need to display the Video will take only a URI or a File path to point to the Video.

If I save the video in the raw or assets folder I can only get an input stream or a file descriptor and it seems nothing of that can be used to initialize the VideoView.

Update

I took a closer look at the MediaPlayer example and tried to start a MediaPlayer with a FileDescriptor to the assets files as in the code below:

SurfaceView videoView = (SurfaceView) findViewById(gettingStarted)
SurfaceHolder holder = videoView.getHolder();
holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
final MediaPlayer player = new MediaPlayer();
player.setDisplay(holder);

player.setDataSource(getAssets().openFd(fileName).getFileDescriptor());
player.prepareAsync();
player.setOnPreparedListener(new OnPreparedListener() {

   @Override
   public void onPrepared(MediaPlayer mp) {
      mp.start();
   }
});

Now I get a the following exception:

java.io.FileNotFoundException: This file can not be opened as a file descriptor; it is probably compressed

It seems there is no other way then copying the file to the sdcard on startup and that seems like a waste of time and memory.

Gisarme answered 12/6, 2010 at 12:54 Comment(3)
I think the issue is because mp4 is a compressed format. Check my answer for detailsDecennium
Here explanation about 'raw' floder #11357101Mouthpart
The year was 2020 and although I was using android studio 3.6, Android 10 operating system, there was audio in the following videoview, but the image was black. Finally, the codes of this friend worked and I cannot explain how happy I was. None of the ones written as the solution below worked in me for the first time. Fortunately I'm happy to finally solve my problem. Thank you: DGrab
F
124

## Perfectly Working since Android 1.6 ##

getWindow().setFormat(PixelFormat.TRANSLUCENT);
VideoView videoHolder = new VideoView(this);
//if you want the controls to appear
videoHolder.setMediaController(new MediaController(this));
Uri video = getUriFromRawFile(context, R.raw.your_raw_file);
//if your file is named sherif.mp4 and placed in /raw
//use R.raw.sherif
videoHolder.setVideoURI(video);
setContentView(videoHolder);
videoHolder.start();

And then

public static Uri getUriFromRawFile(Context context, @ResRaw int rawResourceId) {
    return Uri.Builder()
        .scheme(ContentResolver.SCHEME_ANDROID_RESOURCE)
        .authority(context.getPackageName())
        .path(String.valueOf(rawResourceId))
        .build();
}

## Check complete tutorial ##

Fallal answered 23/12, 2011 at 12:40 Comment(6)
IMPORTANT: To use the R.raw path, you must put your video in the "res/raw" folder and not under "assets".Falconiform
What is "R" here? aka R.raw? What the type of R variable or this is class?Robinet
its not working on micromax canvas 4 , instead its giving StringIndexOutofBound exceptionOxblood
Also - only works for video formats supported by the native AndroidNorseman
if you don't call getWindow().setFormat(PixelFormat.TRANSLUCENT);, make sure you call videoView.setZOrderOnTop(true); on your videoview before playing the video, otherwise it will appear behind your views and you will be very confused; if you get Error(-21851621) then you need to recode your H264 files (H264 for example worked for me with LEAWO Total Media Converter)Outfall
This should be somewhere at the top. Best answer.Dian
T
12
String UrlPath="android.resource://"+getPackageName()+"/"+R.raw.ur file name;
videocontainer.setVideoURI(Uri.parse(UrlPath));
videocontainer.start();

where videocontainer of type videoview.

Thom answered 5/3, 2013 at 14:11 Comment(0)
A
11

Try:

AssetFileDescriptor afd = getAssets().openFd(fileName);
player.setDataSource(afd.getFileDescriptor(),afd.getStartOffset(), afd.getLength());
Adriel answered 25/8, 2011 at 18:54 Comment(1)
The AssetFileDescriptor version of setDataSource was added in API level 24; OP is asking for something that will work on android 2.3.Ganger
E
10

PlayVideoActivity.java:

public class PlayVideoActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_play_video);

        VideoView videoView = (VideoView) findViewById(R.id.video_view);
        MediaController mediaController = new MediaController(this);
        mediaController.setAnchorView(videoView);
        videoView.setMediaController(mediaController);
        videoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.documentariesandyou));
        videoView.start();
    }
}

activity_play_video.xml:

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center" >

    <VideoView
        android:id="@+id/video_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </VideoView>

</LinearLayout>
Enedina answered 18/12, 2013 at 8:5 Comment(0)
D
4

If I remember well, I had the same kind of issue when loading stuff from the asset folder but with a database. It seems that the stuff in your asset folder can have 2 stats : compressed or not.
If it is compressed, then you are allowed 1 Mo of memory to uncompress it, otherwise you will get this kind of exception. There are several bug reports about that because the documentation is not clear. So if you still want to to use your format, you have to either use an uncompressed version, or give an extension like .mp3 or .png to your file. I know it's a bit crazy but I load a database with a .mp3 extension and it works perfectly fine. This other solution is to package your application with a special option to tell it not to compress certain extension. But then you need to build your app manually and add "zip -0" option.
The advantage of an uncompressed assest is that the phase of zip-align before publication of an application will align the data correctly so that when loaded in memory it can be directly mapped.

So, solutions :

  • change the extension of the file to .mp3 or .png and see if it works
  • build your app manually and use the zip-0 option
Decennium answered 21/8, 2010 at 9:33 Comment(0)
W
3

Did you try to put manually Video on SDCard and try to play video store on SDCard ?

If it's working you can find the way to copy from Raw to SDcard here :

android-copy-rawfile-to-sdcard-video-mp4.

Westernmost answered 16/8, 2010 at 23:27 Comment(0)
M
2

I found it :

Uri raw_uri = Uri.parse(<package_name>/+R.raw.<video_file_name>);

Personnaly Android found the resource, but can't play it for now. My file is a .m4v

Most answered 5/12, 2011 at 15:27 Comment(0)
T
2
VideoView myVideo = (VideoView) rootView.findViewById(R.id.definition_video_view);

//Set video name (no extension)
String myVideoName = "my_video";

//Set app package
String myAppPackage = "com.myapp";

//Get video URI from raw directory
Uri myVideoUri = Uri.parse("android.resource://"+myAppPackage+"/raw/"+myVideoName);

//Set the video URI
myVideo.setVideoURI(myVideoUri);

//Play the video
myVideo.start();

https://gist.github.com/jrejaud/b5eb1b013c27a1f3ae5f

Tabbie answered 2/12, 2015 at 20:30 Comment(1)
i tried this but in jelly beans it doesn't work. I don't know if its only because of my phone. But it works on newer devices.Mixologist
S
1

I think that you need to look at this -- it should have everything you want.

EDIT: If you don't want to look at the link -- this pretty much sums up what you'd like.

MediaPlayer mp = MediaPlayer.create(context, R.raw.sound_file_1); mp.start();

But I still recommend reading the information at the link.

Seclusion answered 12/6, 2010 at 19:54 Comment(2)
hey thanks dude but i have looked at this page for like million times and have used this line of code. It does play audio files but not the video and i think there is something related with videoview and assets or raw folder. If you have any idea in your head please feel free to share or a piece of code.Gisarme
If I call MediaPlayer.create(contect, R.raw.video) I get the same exception, inside the MediaPlayer class, as if I prepare the Mediaplayer myself with a file descriptor.Hermanhermann
G
0
  1. Use the MediaPlayer API and the sample code.

  2. Put the media file in raw folder.

  3. Get the file descriptor to the file.

  4. mediaplayer.setDataSource(fd,offset,length); - its a three argument constructor.

  5. Then when onPreared , mediaplayer.start();

Giddy answered 13/6, 2010 at 9:50 Comment(2)
ok thnx i will try this but can you please provide me with some sample code that would be very helpfull. thanks againGisarme
Does not work, have a look at the question for an explanation.Hermanhermann
K
0

In the fileName you must put the relative path to the file (without /asset) for example:

player.setDataSource(
    getAssets().openFd(**"media/video.mp4"**).getFileDescriptor()
);
Karoline answered 10/12, 2011 at 14:13 Comment(0)
A
0

It sounds maybe like you have the same issue as i do. instead of using MP4, is 3GPP possible? i think i used like HandBrake or something as the video converter... you just need to make sure you have the right encoder, like H.264x or something. sorry for being a little vague, it's been a while. Also, if it's possible, don't bother worrying about android 2.1 anymore, and also, something things just WILL NOT WORK IN EMULATOR. so if it works on a lot of devices, then just assume it works (especially with different manufacurers)

here, you can read my problem and how i solved the issue (after a long time and no one had an answer). i explained in a lot more detail here: android media player not working

Avila answered 20/1, 2012 at 6:42 Comment(0)
K
-2

MainCode

Uri raw_uri=Uri.parse("android.resource://<package_name>/+R.raw.<video_file_name>);

myVideoView=(VideoView)findViewbyID(R.idV.Video_view);

myVideoView.setVideoURI(raw_uri);
myVideoView.setMediaController(new MediaController(this));
myVideoView.start();
myVideoView.requestFocus();

XML

<?xml version="1.0" encoding="utf-8" ?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
        <VideoView
            android:id="+@/Video_View"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
        />
</LinearLayout>
Keiko answered 1/7, 2010 at 13:41 Comment(3)
This is not working at all. The Uri points just to /2130968576 in the case of my resource.Hermanhermann
Yes... this solution does not work. However, it the URI points to 2130968576 is OK, because that's the resource ID and that's a legal way to create a usable URI.Branca
Try review your code. Maybe it seems working for you, @Sandeep. However, this maybe not sufficient to solve it.Pathogenic

© 2022 - 2024 — McMap. All rights reserved.