[android-developers] Re: video player

2013-01-07 Thread Mandala Madhuri
hi laxman.. take a video view and coding should be written in java file

On Saturday, 5 January 2013 23:20:42 UTC+5:30, laxman k wrote:

 how to play the video from url  with land scape and handling the buffer 
 loading

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Video Player for MP4 and MOV

2012-11-19 Thread bob
 

I don't know.  Maybe QuickTime for Java?



On Saturday, November 17, 2012 8:07:41 AM UTC-6, CL wrote:

 Thanks.
  
 Is there any open source MOV library that I can use?
  

 On Friday, November 16, 2012 12:16:09 AM UTC+8, bob wrote:

 This class can do MP4:


 android.widget.VideoView


 I doubt it will do MOV.



 On Thursday, November 15, 2012 9:40:59 AM UTC-6, CL wrote:

 Hi all,
  
 Does it mean I should drop the idea on developing it for Android?
  
 Cheers!
  

 On Wednesday, November 14, 2012 10:42:38 PM UTC+8, CL wrote:

 Dear Experts, 
  
 I am thinking of developing my own Video Player for MP4 and MOV files.
 Wonder where are the good resources to perform this task.
  
 Are there any alternatives other than VLC?
  
 Thanks!
  
 CL



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Video Player for MP4 and MOV

2012-11-17 Thread CL
Thanks.
 
Is there any open source MOV library that I can use?
 

On Friday, November 16, 2012 12:16:09 AM UTC+8, bob wrote:

 This class can do MP4:


 android.widget.VideoView


 I doubt it will do MOV.



 On Thursday, November 15, 2012 9:40:59 AM UTC-6, CL wrote:

 Hi all,
  
 Does it mean I should drop the idea on developing it for Android?
  
 Cheers!
  

 On Wednesday, November 14, 2012 10:42:38 PM UTC+8, CL wrote:

 Dear Experts, 
  
 I am thinking of developing my own Video Player for MP4 and MOV files.
 Wonder where are the good resources to perform this task.
  
 Are there any alternatives other than VLC?
  
 Thanks!
  
 CL



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Video Player for MP4 and MOV

2012-11-15 Thread CL
Hi all,
 
Does it mean I should drop the idea on developing it for Android?
 
Cheers!
 

On Wednesday, November 14, 2012 10:42:38 PM UTC+8, CL wrote:

 Dear Experts, 
  
 I am thinking of developing my own Video Player for MP4 and MOV files.
 Wonder where are the good resources to perform this task.
  
 Are there any alternatives other than VLC?
  
 Thanks!
  
 CL


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Video Player for MP4 and MOV

2012-11-15 Thread bob
 

This class can do MP4:


android.widget.VideoView


I doubt it will do MOV.



On Thursday, November 15, 2012 9:40:59 AM UTC-6, CL wrote:

 Hi all,
  
 Does it mean I should drop the idea on developing it for Android?
  
 Cheers!
  

 On Wednesday, November 14, 2012 10:42:38 PM UTC+8, CL wrote:

 Dear Experts, 
  
 I am thinking of developing my own Video Player for MP4 and MOV files.
 Wonder where are the good resources to perform this task.
  
 Are there any alternatives other than VLC?
  
 Thanks!
  
 CL



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: video player

2010-10-04 Thread AnasSamara
Salam Ahmad
do the same exactly instead .3gp use .mp4

salam

On Oct 3, 10:02 am, Ahmed Shoeib ahmedelsayed.sho...@gmail.com
wrote:
 but i want it for mp4 files

 On Oct 3, 9:05 am, AnasSamara anas86sam...@gmail.com wrote:

  1-ADD VideoView in the layout.
  2- push video file to sdcard
  3- put the code
  VideoView videoHolder = (VideoView) activity
                                  .findViewById(R.id.VideoView01);
                  videoHolder.stopPlayback();
                  videoHolder.clearFocus();
                  videoHolder.requestFocus();
                  videoHolder.setMediaController(new 
  MediaController(activity));
                  videoHolder.setVideoURI(Uri.parse(sdcard/androidVideo + i 
  + .
  3gp));

                  videoHolder.start();

  On Oct 2, 11:09 pm, Sudsak jpidd...@gmail.com wrote:

   READ THE DOCUMENTATION.

  http://developer.android.com/guide/index.html

   Google is your friend, use it.

   On Oct 2, 6:57 am, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote:

hi,
i want to play video on android
can anyone help me to play video ?

thanks,



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: video player

2010-10-03 Thread AnasSamara
1-ADD VideoView in the layout.
2- push video file to sdcard
3- put the code
VideoView videoHolder = (VideoView) activity
.findViewById(R.id.VideoView01);
videoHolder.stopPlayback();
videoHolder.clearFocus();
videoHolder.requestFocus();
videoHolder.setMediaController(new MediaController(activity));
videoHolder.setVideoURI(Uri.parse(sdcard/androidVideo + i + .
3gp));

videoHolder.start();

On Oct 2, 11:09 pm, Sudsak jpidd...@gmail.com wrote:
 READ THE DOCUMENTATION.

 http://developer.android.com/guide/index.html

 Google is your friend, use it.

 On Oct 2, 6:57 am, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote:

  hi,
  i want to play video on android
  can anyone help me to play video ?

  thanks,



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: video player

2010-10-03 Thread Ahmed Shoeib
but i want it for mp4 files

On Oct 3, 9:05 am, AnasSamara anas86sam...@gmail.com wrote:
 1-ADD VideoView in the layout.
 2- push video file to sdcard
 3- put the code
 VideoView videoHolder = (VideoView) activity
                                 .findViewById(R.id.VideoView01);
                 videoHolder.stopPlayback();
                 videoHolder.clearFocus();
                 videoHolder.requestFocus();
                 videoHolder.setMediaController(new MediaController(activity));
                 videoHolder.setVideoURI(Uri.parse(sdcard/androidVideo + i + 
 .
 3gp));

                 videoHolder.start();

 On Oct 2, 11:09 pm, Sudsak jpidd...@gmail.com wrote:

  READ THE DOCUMENTATION.

 http://developer.android.com/guide/index.html

  Google is your friend, use it.

  On Oct 2, 6:57 am, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote:

   hi,
   i want to play video on android
   can anyone help me to play video ?

   thanks,



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: video player

2010-10-02 Thread Sudsak

READ THE DOCUMENTATION.

http://developer.android.com/guide/index.html

Google is your friend, use it.


On Oct 2, 6:57 am, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote:
 hi,
 i want to play video on android
 can anyone help me to play video ?

 thanks,

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: video player using hardware to encode/decode

2010-06-17 Thread Android dev
No ideas?
At least, how can I call the hardware from my ndk native application?


On Jun 8, 3:33 pm, Android dev gian23...@gmail.com wrote:
 I know that the mediaplayer api uses hardware acceleration to encode/
 decode video.
 Now I want to develop my own video player application without using
 the mediaplayer api, but still using the hardware to encode/decode
 video.
 Any tips on how can I do this?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Video Player - Progress Bar

2010-03-29 Thread OrdinaryIndian
Any suggestion to my last post?

Should I use SurfaceView or VideoView for playing video? Thanks.


On Mar 28, 8:41 pm, OrdinaryIndian just.an.ordinary.ind...@gmail.com
wrote:
 I am a newbie to Android and am in the process of writing a simple
 **video player** app.

 An activity that shows **a video**. And at the bottom a **progress
 bar**.

 I was reading about threads - Main (UI) Thread  Background (Worker)
 Thread.

 My **question** is which part should go into the Main Thread and which
 one into the Background Thread? Any code snippets would be very
 helpful.

 Thanks.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words REMOVE ME as the subject.


Re: [android-developers] Re: Video Player - Progress Bar

2010-03-29 Thread Mark Murphy
OrdinaryIndian wrote:
 Any suggestion to my last post?

Nothing should go in a background thread. You do not need a background
thread for this problem.

Here is a project that shows a video player with a timeline. No
background threads were harmed in the making of this project:

http://github.com/commonsguy/vidtry

Just use postDelayed() to arrange to get control every second (roughly)
and update your timeline based on the MediaPlayer's elapsed time and
duration values.

 Should I use SurfaceView or VideoView for playing video? Thanks.

Either can work. I used MediaPlayer and a SurfaceView, but the necessary
methods for a progress indicator are available on VideoView as well.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android Consulting/App Development: http://commonsware.com/consulting

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words REMOVE ME as the subject.


[android-developers] Re: Video player

2009-06-01 Thread hina naz
*visit my site and earn more money**  *

* http://latesttechnologyinfo.com/*

*  http://latesttechnologyinfo.com/*

*  http://latesttechnologyinfo.com/*

*  http://latesttechnologyinfo.com/*

*  http://latesttechnologyinfo.com/*

*  http://latesttechnologyinfo.com/  *

* **http://latesttechnologyinfo.com/*

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---