Re: [android-developers] Remote View Issue

2013-10-24 Thread diwa navi
Dude wanna get one of my problem fixed in my smart phone ...can you?
On 15-Oct-2013 10:10 AM, Peeyush Varshney varshney.peey...@gmail.com
wrote:

 Dear All,

 I am updating RemoteView from Services, but if I pass PendingIntent very
 fast.
 RemoteView is not updating..

 I got the fix, but i doest feel .. it is good from App prospective.
 My doubt is, why remoteViews.setImageViewResource call does not work
 properly.


 Code snippet:
 RemoteViews remoteViews = null;
 private void showNotification(int n) {
  if(remoteViews == null)
  {
  remoteViews = new RemoteViews(getPackageName(),//call always to fix
 the problem
 R.layout.activity_lesson_one);
 setupRemoteButtons(remoteViews);
  }

 mNotification.icon = R.drawable.ic_launcher;
 mNotification.contentView = remoteViews;
 remoteViews.setTextViewText(R.id.text1, Integer.toString(n) );
 remoteViews.setImageViewResource(R.id.image1, num % 2 == 0 ? R.drawable.a
 : R.drawable.b);

 mNotiManager.notify(getPackageName(), 0x07010004, mNotification);
 }

 if i initialize RemoteViews once and use it. problem occurs... To fix
 this, I need to make object of RemoteViews  every showNotification() call.

 If Issue occurs once , notification never update again.

 So plz tell me the exact working of Remote View.. it is not documented
 anywhere.

 --
 Thank  Regards
 Peeyush Varshney

 --
 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
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Re: Error Installing Android SDK Platform Tools

2012-03-19 Thread Navi
Hola Alex

Tuve el mismo problema en Windows 7 lo soluciones de la siguiente 
forma clic derecho sobre SDK Manager Ejecutar como administrador, realiza 
la verificasion y le di instalar el complemento de SDK Platfomr Tool.

Espero le funcione de esta forma

-- 
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] .JPEG to .MP4 Conversion

2012-02-29 Thread NAVI NEW
Hello Android Developers,

I having pictures .JPEG file, I want to convert it in video
format .mp4.

There is ffmpeg command for .mp4  typecast

ffmpeg -r 30 -i foo-%03d.jpeg -r 30 -b 8973kb -minrate 8973kb -maxrate
8973kb -bufsize 1kb foo2.mp4


Please help me how to convert images in form of video mp4.

Thanking of you.

Navi

-- 
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] When apk removing that action handling

2011-10-28 Thread NAVI NEW
Hello Sir,


I am installing a  apk file on device which Package path:
com.testing.app.


When some one removing the apk then that moment i want to handle
another Thread , when apk is removed   .


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] APK removing time message popup

2011-10-28 Thread NAVI NEW
Hello Sir,

I have a created app apk , i am installing that one on devices  but i
want message from side when user removing this specific application
from his own device .


Is this possible in android when removing the application handle that
state...

-- 
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] APK removing time message popup

2011-10-28 Thread NAVI NEW
Hello Sir,

I have a created app apk , i am installing that one on devices  but i
want message from side when user removing this specific application
from his own device .


Is this possible in android when removing the application handle that
state...

-- 
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] Cache issue

2011-10-25 Thread NAVI NEW
Hello Sir,

I am downloading  200 images and saving  sdcard form server but now
facing time issue taking more time.

i want to store  permanently image in cache and handle them always
please help me.


i am not getting perfect solution how to store image in cache for
handle .

-- 
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


Re: [android-developers] Cache issue

2011-10-25 Thread NAVI NEW
Please some one give me best idea for this issue.

On Tue, Oct 25, 2011 at 8:04 PM, NAVI NEW navi44...@gmail.com wrote:

 Hello Sir,

 I am downloading  200 images and saving  sdcard form server but now
 facing time issue taking more time.

 i want to store  permanently image in cache and handle them always
 please help me.


 i am not getting perfect solution how to store image in cache for
 handle .

 --
 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

-- 
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

Re: [android-developers] Re: Cache issue

2011-10-25 Thread NAVI NEW
I have already implemented this one,

that's running but not gatting way for all

http://www.flexjockey.com/2011/03/create-a-pretty-simple-cache-for-android/

On Tue, Oct 25, 2011 at 9:29 PM, skink psk...@gmail.com wrote:



 On Oct 25, 5:41 pm, NAVI NEW navi44...@gmail.com wrote:
  Please some one give me best idea for this issue.
 
 
 
  On Tue, Oct 25, 2011 at 8:04 PM, NAVI NEW navi44...@gmail.com wrote:
   Hello Sir,
 
   I am downloading  200 images and saving  sdcard form server but now
   facing time issue taking more time.
 
   i want to store  permanently image in cache and handle them always
   please help me.
 
   i am not getting perfect solution how to store image in cache for
   handle .
 
   --
   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

 best idea is just to write it to the sdcard and read it again to speed
 things out.

 what did you try so far?

 pskink

 --
 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


-- 
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] Sqlite question

2011-10-20 Thread NAVI NEW
Hello Sir,

i have a table in sqlite

id  value
101   a
101   b
101  c
102  d
104 e
104 f
103 g


Here i want to retrieve 101 id all data like a,b and c , Please help
me which query is best for this approach.

-- 
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


Re: [android-developers] Re: Sqlite question

2011-10-20 Thread NAVI NEW
Thanks very much now it's working fine .

On Fri, Oct 21, 2011 at 10:20 AM, skink psk...@gmail.com wrote:



 On Oct 21, 6:31 am, NAVI NEW navi44...@gmail.com wrote:
  Hello Sir,
 
  i have a table in sqlite
 
  id  value
  101   a
  101   b
  101  c
  102  d
  104 e
  104 f
  103 g
 
  Here i want to retrieve 101 id all data like a,b and c , Please help
  me which query is best for this approach.


 select * from table where id=101;

 pskink

 --
 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


-- 
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] Https error while communicating

2011-10-12 Thread NAVI NEW
Hello Sir,

I was communicating with https server using .cert file android it was
working fine , but now facing issue

10-12 16:30:30.574: ERROR/Nav(3295): version res:: 
https://50.18.49.118/xmlrpc:443/ssltest
10-12 16:30:30.574: ERROR/Nav(3295): java.io.FileNotFoundException:
https://50.18.49.118/xmlrpc:443/ssltest
10-12 16:30:30.574: ERROR/Nav(3295): at
org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:
1061)
10-12 16:30:30.574: ERROR/Nav(3295): at
org.apache.harmony.luni.internal.net.www.protocol.https.HttpsURLConnection.getInputStream(HttpsURLConnection.java:
252)
10-12 16:30:30.574: ERROR/Nav(3295): at
com.halosys.TvAnyTime.IntroSplash.AllVersionData(IntroSplash.java:
1054)
10-12 16:30:30.574: ERROR/Nav(3295): at
com.halosys.TvAnyTime.IntroSplash
$LongOperation.doInBackground(IntroSplash.java:1840)
10-12 16:30:30.574: ERROR/Nav(3295): at
com.halosys.TvAnyTime.IntroSplash
$LongOperation.doInBackground(IntroSplash.java:1)
10-12 16:30:30.574: ERROR/Nav(3295): at android.os.AsyncTask
$2.call(AsyncTask.java:185)
10-12 16:30:30.574: ERROR/Nav(3295): at
java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
10-12 16:30:30.574: ERROR/Nav(3295): at
java.util.concurrent.FutureTask.run(FutureTask.java:137)
10-12 16:30:30.574: ERROR/Nav(3295): at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:
1068)
10-12 16:30:30.574: ERROR/Nav(3295): at
java.util.concurrent.ThreadPoolExecutor
$Worker.run(ThreadPoolExecutor.java:561)
10-12 16:30:30.574: ERROR/Nav(3295): at
java.lang.Thread.run(Thread.java:1096)
10-12 16:30:30.593: INFO/System.out(3295): resp
code2400


Here coding side .cert file regenerated all stubs fine but getting
above error.

-- 
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


Re: [android-developers] I want to convert video in form of h.264 codec interface

2011-09-30 Thread NAVI NEW
Please some one help me how to decode video file in form of h.264

On Fri, Sep 30, 2011 at 3:25 PM, ProblemZone navi44...@gmail.com wrote:

 i want to trans-code my video in form of h.264 codec interface, How to
 convert video in form of h.264 codec android .

 --
 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

-- 
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

Re: [android-developers] I want to convert video in form of h.264 codec interface

2011-09-30 Thread NAVI NEW
How to transcode video in form of h.264 android

On Fri, Sep 30, 2011 at 3:43 PM, NAVI NEW navi44...@gmail.com wrote:

 Please some one help me how to decode video file in form of h.264


 On Fri, Sep 30, 2011 at 3:25 PM, ProblemZone navi44...@gmail.com wrote:

 i want to trans-code my video in form of h.264 codec interface, How to
 convert video in form of h.264 codec android .

 --
 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




-- 
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

Re: [android-developers] I want to convert video in form of h.264 codec interface

2011-09-30 Thread NAVI NEW
i want to convert video in form of .h264
android
because android device supporting this format video play on surface
give me guideline
how to convert video in form of h.264

On Fri, Sep 30, 2011 at 3:54 PM, NAVI NEW navi44...@gmail.com wrote:

 How to transcode video in form of h.264 android


 On Fri, Sep 30, 2011 at 3:43 PM, NAVI NEW navi44...@gmail.com wrote:

 Please some one help me how to decode video file in form of h.264


 On Fri, Sep 30, 2011 at 3:25 PM, ProblemZone navi44...@gmail.com wrote:

 i want to trans-code my video in form of h.264 codec interface, How to
 convert video in form of h.264 codec android .

 --
 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





-- 
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] libav for Android with H/W accelerated decoding via the Stagefright framework

2011-09-30 Thread NAVI NEW
Hello Developers,

i am not able to play mp4 video  on android device .

libav for Android with H/W accelerated decoding via the Stagefright
framework,

Can i able to play mpeg4/mp4 file using this lib.

Please help me.

-- 
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


Re: [android-developers] I am getting error : max_analyze_duration reached , Please confirm me what cause of this error Android

2011-09-29 Thread NAVI NEW
Now i am trying to play .mp4 video file from sdcard using ffmpeg lib.

When video file contains  H.264 AVC  then error not occur, but when i am
using

MPEG-4 -video then this error occur:

Please check the log file.




On Thu, Sep 29, 2011 at 5:36 PM, ProblemZone navi44...@gmail.com wrote:

 I am getting error : max_analyze_duration reached  , Please confirm me
 what cause of this error Android


 --
 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

-- 
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=en09-28 10:19:05.959: INFO/FFMpegPlayer-JNI(23448): native_setup
09-28 10:19:05.969: INFO/FFMpegMediaPlayer(23448): setListener
09-28 10:19:05.969: INFO/FFMpegPlayer-JNI(23448): setDataSource: path 
/sdcard/E0005804.mp4
09-28 10:19:05.969: INFO/FFMpegMediaPlayer(23448): 
setDataSource(/sdcard/E0005804.mp4)
09-28 10:19:05.969: DEBUG/FFMpegMediaPlayer(23448): Probed with size=%d and 
score=%d
09-28 10:19:05.979: DEBUG/FFMpegMediaPlayer(23448): ISO: File Type Major Brand: 
%.4s
09-28 10:19:06.129: ERROR/wifi(1379): [android_net_wifi_getRssiHelper] rssi -77
09-28 10:19:07.109: ERROR/FFMpegMediaPlayer(23448): AV_LOG_WARNING: 
max_analyze_duration reached
09-28 10:19:07.129: INFO/ActivityManager(1379): Displayed activity 
cz.havlena.ffmpeg.ui/.FFMpegPlayerActivity: 1311 ms (total 1311 ms)
09-28 10:19:07.159: INFO/SurfaceWrapper(23448): registering video surface
09-28 10:19:07.159: INFO/SurfaceWrapper(23448): registered
09-28 10:19:07.159: INFO/AudioTrackWrapper(23448): registering audio track
09-28 10:19:07.159: INFO/AudioTrackWrapper(23448): registered
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): prepareVideo
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): width 352
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): mVideoHeight 288
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): mDuration 261995329
09-28 10:19:07.159: ERROR/FFMpegMediaPlayer(23448): AV_LOG_WARNING: No 
accelerated colorspace conversion found from %s to %s.
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): 1mDuration 261995329
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): 2mDuration 352
09-28 10:19:07.159: INFO/SurfaceWrapper(23448): getting surface's pixels 352x288
09-28 10:19:07.159: INFO/SurfaceWrapper(23448): getted
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): 3mDuration 352
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): 4mDuration 352
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): 5mDuration 352
09-28 10:19:07.159: INFO/FFMpegMediaPlayer(23448): prepareAudio
09-28 10:19:07.269: INFO/AudioTrackWrapper(23448): setting audio track
09-28 10:19:07.309: INFO/FFMpegMediaPlayer(23448): starting main player thread
09-28 10:19:07.309: INFO/FFMpegMediaPlayer(23448): playing 352x288
09-28 10:19:07.309: INFO/FFMpegThread(23448): starting thread
09-28 10:19:07.309: INFO/FFMpegVideoDecoder(23448): decoding video
09-28 10:19:07.309: INFO/FFMpegThread(23448): starting thread
09-28 10:19:07.309: INFO/FFMpegAudioDecoder(23448): decoding audio
09-28 10:19:07.369: INFO/FFMpegThread(23448): thread ended
09-28 10:19:12.629: INFO/WindowManager(1379): Setting rotation to 0, animFlags=1
09-28 10:19:12.649: INFO/ActivityManager(1379): Config changed: { scale=1.0 
imsi=0/0 loc=en_IN touch=3 keys=1/1/2 nav=1/1 orien=1 layout=18 uiMode=17 
seq=102}
09-28 10:19:12.659: DEBUG/PhoneApp(1473): updateProximitySensorMode: state = 
IDLE
09-28 10:19:12.709: DEBUG/PhoneApp(1473): updateProximitySensorMode: lock 
already released.
09-28 10:19:12.879: DEBUG/[brighthy_log](1473): [BRIGHTHY] Enter 
ACTION_CONFIGURATION_CHANGED
09-28 10:19:12.889: DEBUG/FFMpegMovieViewAndroid(23448): releasing player
09-28 10:19:12.889: INFO/FFMpegMediaPlayer(23448): suspend
09-28 10:19:12.889: INFO/FFMpegIDecoder(23448): waiting on end of decoder thread
09-28 10:19:12.889: ERROR/FFMpegMediaPlayer(23448): waiting on video thread
09-28 10:19:12.889: ERROR/FFMpegMediaPlayer(23448): waiting on audio thread
09-28 10:19:12.889: INFO/FFMpegThread(23448): thread ended
09-28 10:19:12.889: INFO/FFMpegMediaPlayer(23448): end of playing
09-28 10:19:12.889: INFO/FFMpegIDecoder(23448): waiting on end of decoder thread
09-28 10:19:12.889: INFO/AudioTrackWrapper(23448): unregistering audio track
09-28 10:19:12.899: INFO/AudioTrackWrapper(23448): unregistered
09-28 10:19:12.899: INFO/SurfaceWrapper(23448): unregistering audio track
09-28 10:19:12.899: 

Re: [android-developers] Facebook integration

2011-09-28 Thread NAVI NEW
Sure that is working , i have also tried that works fine.

On Tue, Sep 27, 2011 at 3:59 PM, shital suryawanshi 
shital.andr...@gmail.com wrote:

 hi sapna
 i am also think to develop facebook application
 thanks
 shital

 --

 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


  --
 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


-- 
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

Re: [android-developers] H264 RTP Packetization

2011-09-27 Thread NAVI NEW
Same issue i have already suffered someone not help so you try by yourself .




On Mon, Sep 26, 2011 at 5:00 PM, B.Arunkumar
awsnetworkrecor...@gmail.comwrote:

 Hi,

I would like to check if there is any good example code to do RTP
 Packetization accroding to RFC 3984. We are getting H264 stream from
 LG mobile camera which we have to stream to a server. How do we
 calculate the NAL Size and check if the frame size size is lesser than
 1400 bytes?

 Thank you,
 B.Arunkumar

 --
 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

-- 
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: OpenMAX codec interface +android

2011-09-23 Thread NAVI NEW
Please refer me some link regarding this issue.

On Fri, Sep 23, 2011 at 12:19 PM, ProblemZone navi44...@gmail.com wrote:

 Hello Developers,

 How to create OpenMax codec ffmpeg interface in android.

 i am getting ffmpeg lib, Open Max lib but how to interface in android
 with these lib .





-- 
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: OpenMAX codec interface +android

2011-09-23 Thread NAVI NEW
Please reply me someone

On Fri, Sep 23, 2011 at 12:27 PM, NAVI NEW navi44...@gmail.com wrote:

 Please refer me some link regarding this issue.


 On Fri, Sep 23, 2011 at 12:19 PM, ProblemZone navi44...@gmail.com wrote:

 Hello Developers,

 How to create OpenMax codec ffmpeg interface in android.

 i am getting ffmpeg lib, Open Max lib but how to interface in android
 with these lib .






-- 
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

Re: [android-developers] openmax framework android

2011-09-23 Thread NAVI NEW
Thanks , nice and very helpful link.

On Sat, Sep 24, 2011 at 5:09 AM, Pratik Prajapati 
pratik.prajap...@gmail.com wrote:



 http://free-electrons.com/pub/video/2011/elc/elc-2011-garcia-matsubara-hayama-munakata-video-codec-android-openmax-il.webm



 http://free-electrons.com/pub/video/2011/elc/elc-2011-garcia-matsubara-hayama-munakata-video-codec-android-openmax-il.webm
 --
 Regards,
 Pratik Prajapati


 On Fri, Sep 23, 2011 at 3:00 PM, kdı gjofd 
 android.develope...@gmail.comwrote:

 i dont know what is openmax  :D


 2011/9/23, ProblemZone navi44...@gmail.com:
  i want to integrate openmax framework android for media player , give
  me guide line for implement that one.
 
  --
  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

 --
 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







  --
 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


-- 
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

Re: [android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-22 Thread NAVI NEW
i am getting ffmpeg lib only nothing else for guideline .

so need guideline ..

On Wed, Sep 21, 2011 at 10:07 PM, TreKing treking...@gmail.com wrote:

 On Wed, Sep 21, 2011 at 4:04 AM, NAVI NEW navi44...@gmail.com wrote:

 i want to run this type interface with my app. what to do for this one


 Create that type of interface in your application.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices


  --
 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


-- 
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

Re: [android-developers] Re: how to implement ffmpeg video codec for video player +android

2011-09-22 Thread NAVI NEW
Thanks Doug,

Now i am using Ubuntu VM Cross compile FFmpeg for Android.

I have already downloaded ffmpeg wrapper for compiling code here getting
ffmpeg lib but not getting how to interface with native layer for video
codec.

I know this  is something extremely complicated  issue, but this my need ,
please give me deeply idea for integrating that one.






On Thu, Sep 22, 2011 at 2:42 PM, Doug beafd...@gmail.com wrote:

 On Sep 21, 7:46 am, NAVI NEW navi44...@gmail.com wrote:
  Please give me  a guideline for implementing ffmpeg on android app.

 1. Cross compile FFmpeg for Android
 2. Write a JNI wrapper around the parts that need java access from the
 native layer
 3. Profit

 I don't think you will get any more help from this forum.  You are
 asking something extremely complicated.

 Doug

 --
 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


-- 
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

Re: [android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-22 Thread NAVI NEW
How to implement ffmpeg in videoplay app?

On Thu, Sep 22, 2011 at 2:04 PM, NAVI NEW navi44...@gmail.com wrote:

 i am getting ffmpeg lib only nothing else for guideline .

 so need guideline ..


 On Wed, Sep 21, 2011 at 10:07 PM, TreKing treking...@gmail.com wrote:

 On Wed, Sep 21, 2011 at 4:04 AM, NAVI NEW navi44...@gmail.com wrote:

 i want to run this type interface with my app. what to do for this one


 Create that type of interface in your application.


 -
  TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices


  --
 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




-- 
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

Re: [android-developers] Re: how to implement ffmpeg video codec for video player +android

2011-09-22 Thread NAVI NEW
I have already tried this one on Ubuntu VM , this is compiling nice there, i
am ffmpeg  binary file there but now how to use this one with java native

I want to play video from sdcard using this one.

On Wed, Sep 21, 2011 at 8:55 PM, frak frak@gmail.com wrote:

 This helped me a lot...

 https://github.com/guardianproject/android-ffmpeg

 This is not an easy path you have chosen however - I found cross-
 compiling to be very tricky to get going on my mac.  May the force be
 with you...

 On Sep 21, 3:46 pm, NAVI NEW navi44...@gmail.com wrote:
  Please give me  a guideline for implementing ffmpeg on android app.
 
 
 
 
 
 
 
  On Wed, Sep 21, 2011 at 7:05 PM, John navi44...@gmail.com wrote:
   how to implement ffmpeg video codec for video player +android
 
   --
   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

 --
 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


-- 
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

Re: [android-developers] Re: how to implement ffmpeg video codec for video player +android

2011-09-22 Thread NAVI NEW
Thanks very much ,

But

I have already tried this one on Ubuntu VM , this code is compiling on
Ubuntu , i am getting  ffmpeg  binary file there but now how to use this one
with java native

I want to play video from sdcard using this lib.

On Thu, Sep 22, 2011 at 5:27 PM, NAVI NEW navi44...@gmail.com wrote:

 I have already tried this one on Ubuntu VM , this is compiling nice there,
 i am ffmpeg  binary file there but now how to use this one with java native

 I want to play video from sdcard using this one.


 On Wed, Sep 21, 2011 at 8:55 PM, frak frak@gmail.com wrote:

 This helped me a lot...

 https://github.com/guardianproject/android-ffmpeg

 This is not an easy path you have chosen however - I found cross-
 compiling to be very tricky to get going on my mac.  May the force be
 with you...

 On Sep 21, 3:46 pm, NAVI NEW navi44...@gmail.com wrote:
  Please give me  a guideline for implementing ffmpeg on android app.
 
 
 
 
 
 
 
  On Wed, Sep 21, 2011 at 7:05 PM, John navi44...@gmail.com wrote:
   how to implement ffmpeg video codec for video player +android
 
   --
   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

 --
 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




-- 
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

Re: [android-developers] Re: how to implement ffmpeg video codec for video player +android

2011-09-22 Thread NAVI NEW
RockPlayer api is not available for developer angle , it's apk is free.

All Player giving ffmpeg lib free  for handle videoview using codec,

Please help me how to configure this one, i have already read your thread
with google developer but not getting actual way.


Please solve my issue.



On Thu, Sep 22, 2011 at 6:07 PM, kiran kiranbhat2...@gmail.com wrote:

 Check Rockplayer
 Regards
 Kiran


 On Thu, Sep 22, 2011 at 2:42 PM, Doug beafd...@gmail.com wrote:

 On Sep 21, 7:46 am, NAVI NEW navi44...@gmail.com wrote:
  Please give me  a guideline for implementing ffmpeg on android app.

 1. Cross compile FFmpeg for Android
 2. Write a JNI wrapper around the parts that need java access from the
 native layer
 3. Profit

 I don't think you will get any more help from this forum.  You are
 asking something extremely complicated.

 Doug

 --
 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




 --
 Regards
  Kiran

  --
 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


-- 
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

Re: [android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-21 Thread NAVI NEW
i want to run this type interface with my app. what to do for this one

On Wed, Sep 21, 2011 at 2:23 PM, B.Arunkumar
awsnetworkrecor...@gmail.comwrote:

 Hi,

   You can download it from the Android Market and use it like a
 normal app. I don't think you can use rockplayer in your application,
 though.

 B.Arunkumar

 On Sep 16, 8:34 pm, TreKing treking...@gmail.com wrote:
  On Fri, Sep 16, 2011 at 2:16 AM, NAVI NEW navi44...@gmail.com wrote:
   i am asking how to use , rock player in application not asking about
   contact.
 
  Is this rock player something in the SDK?
 
 
 -
  TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
  transit tracking app for Android-powered devices

 --
 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


-- 
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

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread NAVI NEW
Is any one reviewing my issue or not?

On Wed, Sep 21, 2011 at 5:37 PM, John navi44...@gmail.com wrote:

 Hello developers,


 i have a many mp4 videos files in sdcard , that video file contains
 different width,height resolution. i want give a single constant
 resolution to that file by code.

 Plz need help,

 --
 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

-- 
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

Re: [android-developers] how to implement ffmpeg video codec for video player +android

2011-09-21 Thread NAVI NEW
Please give me  a guideline for implementing ffmpeg on android app.

On Wed, Sep 21, 2011 at 7:05 PM, John navi44...@gmail.com wrote:

 how to implement ffmpeg video codec for video player +android

 --
 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

-- 
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

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread NAVI NEW
Sure i am not a pro for crop the video resolution, but if you give me some
way guideline then i can be able to do that one.

On Wed, Sep 21, 2011 at 8:22 PM, Jim Graham spooky1...@gmail.com wrote:

 On Wed, Sep 21, 2011 at 05:07:02AM -0700, John wrote:

  i have a many mp4 videos files in sdcard , that video file contains
  different width,height resolution. i want give a single constant
  resolution to that file by code.

 Different width:height resolutions (in computer video, NOT necessarily
 in TV formats[1]) mean different aspect ratios.  If you know enough about
 video to know how badly you are going to screw up your video by fscking
 around with its aspect ratios, you know enough to know to leave it alone.
 You cannot convert 4:3 (fullscreen) to widescreen; you CAN convert
 widescreen formats (and there are a few of these) to 4:3, but you have to
 do some cropping, either pan  scan or just a direct crop, both of which
 are highly annoying even when done by a pro, and I gather you are not a
 pro.

 Later,
   --jim

 [1] In TV, the aspect ratio and resolution have nothing to do
with each other.  For example, a typical DVD's resolution
is 720x480, but its aspect ratio may be 4:3, 16:9, etc.
SVCD is 480x480, but again

 --
 THE SCORE:  ME:  2  CANCER:  0
 73 DE N5IAL (/4)| Peter da Silva:  No, try rm -rf /
 spooky1...@gmail.com| Dave Aronson:As your life flashes before
  Running FreeBSD 7.0  |  your eyes, in the unit of time known as an
 ICBM / Hurricane:   |  ohnosecond (alt.sysadmin.recovery)
   30.44406N 86.59909W  |

 Android Apps Listing at http://www.jstrack.org/barcodes.html

 --
 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


-- 
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

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread NAVI NEW
Thanks a lot for reply .

On Wed, Sep 21, 2011 at 8:50 PM, NAVI NEW navi44...@gmail.com wrote:

 Sure i am not a pro for crop the video resolution, but if you give me some
 way guideline then i can be able to do that one.


 On Wed, Sep 21, 2011 at 8:22 PM, Jim Graham spooky1...@gmail.com wrote:

 On Wed, Sep 21, 2011 at 05:07:02AM -0700, John wrote:

  i have a many mp4 videos files in sdcard , that video file contains
  different width,height resolution. i want give a single constant
  resolution to that file by code.

 Different width:height resolutions (in computer video, NOT necessarily
 in TV formats[1]) mean different aspect ratios.  If you know enough about
 video to know how badly you are going to screw up your video by fscking
 around with its aspect ratios, you know enough to know to leave it alone.
 You cannot convert 4:3 (fullscreen) to widescreen; you CAN convert
 widescreen formats (and there are a few of these) to 4:3, but you have to
 do some cropping, either pan  scan or just a direct crop, both of which
 are highly annoying even when done by a pro, and I gather you are not a
 pro.

 Later,
   --jim

 [1] In TV, the aspect ratio and resolution have nothing to do
with each other.  For example, a typical DVD's resolution
is 720x480, but its aspect ratio may be 4:3, 16:9, etc.
SVCD is 480x480, but again

 --
 THE SCORE:  ME:  2  CANCER:  0
 73 DE N5IAL (/4)| Peter da Silva:  No, try rm -rf /
 spooky1...@gmail.com| Dave Aronson:As your life flashes before
  Running FreeBSD 7.0  |  your eyes, in the unit of time known as an
 ICBM / Hurricane:   |  ohnosecond (alt.sysadmin.recovery)
   30.44406N 86.59909W  |

 Android Apps Listing at http://www.jstrack.org/barcodes.html

 --
 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




-- 
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

Re: [android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-16 Thread NAVI NEW
i am asking how to use , rock player in application not asking about
contact.

On Fri, Sep 16, 2011 at 12:41 PM, gjs garyjamessi...@gmail.com wrote:

 Contact rock player

 On Sep 16, 3:34 pm, NAVI NEW navi44...@gmail.com wrote:
  HOW TO USE ROCK PLAYER IN OUR OWN application.

 --
 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


-- 
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] how to play video file using ffmpeg library android

2011-09-16 Thread NAVI NEW
how to play  video file using ffmpeg library android

-- 
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] How to accelerate video any resolution video on surface view +android code

2011-09-16 Thread NAVI NEW
How to accelerate video any resolution video on surface view +android
code

-- 
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: How to accelerate video any resolution video on surface view +android code

2011-09-16 Thread NAVI NEW
Some one give me actual figure for do that thing

On Sep 16, 3:09 pm, NAVI NEW navi44...@gmail.com wrote:
 How to accelerate video any resolution video on surface view +android
 code

-- 
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


Re: [android-developers] Re: How to accelerate video any resolution video on surface view +android code

2011-09-16 Thread NAVI NEW
This default feature works with 3.0 but i want use with all android sdk . i
want play video on surface

On Fri, Sep 16, 2011 at 4:41 PM, sparky spar...@google.com wrote:

 http://developer.android.com/guide/practices/optimizing-for-3.0.html

 You can enable hardware-accelerated rendering in your application by
 setting android:hardwareAccelerated=true in your manifest's
 applicationhttp://developer.android.com/guide/topics/manifest/application-element.html
  element
 or for individual 
 activityhttp://developer.android.com/guide/topics/manifest/activity-element.html
  elements.



  --
 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


-- 
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] HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-15 Thread NAVI NEW
HOW TO USE ROCK PLAYER IN OUR OWN application.

-- 
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] video frame transcoding in android

2011-09-07 Thread NAVI NEW
Please help me how to do video frame trans-coding in android

-- 
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] Android best way for socket communication need perfect url

2011-09-07 Thread NAVI NEW
Android best way for socket communication need perfect url

-- 
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] which one is third api free for video play in android

2011-09-07 Thread NAVI NEW
which one is third api free for video play in android

-- 
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] how to Change resolution of video by java /Android code

2011-09-07 Thread NAVI NEW
i have a video which have which containing  different video
resolution, i want give it fix resolution by code.It's possible or not
by code

-- 
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] which one is third api free for video play in android

2011-09-07 Thread NAVI NEW
which one is third api free for video play in android

-- 
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


Re: [android-developers] Re: Once again the INSTALL_FAILED_INSUFFICIENT_STORAGE error

2011-09-07 Thread NAVI NEW
Increase avd size

On Wed, Sep 7, 2011 at 4:14 PM, Palsson palsson...@gmail.com wrote:

 Hey there,

 Thanks for your replies..
 I'm afraid none of them are solving the issue:
 - partition-size 1024
 - android:installLocation=preferExternal
 - or reboot

 I can see at the top-icon-bar on my display, when the android desktop
 shows up after reboot, that it says low on space.
 That could be related to what Pavel Mores said about some clean up
 failure.. and again, it worked to begin with. Then not.

 An amazing piece of issue!?

 Regards
 Palsson


 On Sep 6, 3:58 pm, Latimerius l4t1m3r...@googlemail.com wrote:
  Thanks for the links, however even those don't seem to mention a solution
  (or even a work-around) for pre-2.2 hardware devices ...
 
  On Tue, Sep 6, 2011 at 11:29 AM, sanj sahayam sanjsmail...@gmail.com
 wrote:
 
 
 
 
 
 
 
   Have you read these articles on SO:
 
  http://stackoverflow.com/questions/4709137/solution-android-install-f.
 ..
 
  http://stackoverflow.com/questions/6788996/installation-error-install.
 ..
 
   Have you also tried it by wiping the data on the emulator before
 launching?
 
   when using adb push which filesystem location do you push to?
 
   Cheers,
 
   Sanj
 
   --
   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

 --
 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

-- 
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] can i able to play video using FFmpeg api.

2011-09-07 Thread NAVI NEW
can i able to play video using FFmpeg api.

-- 
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


Re: [android-developers] video issue

2011-09-07 Thread NAVI NEW
Please you create a new emulator or edit setting with sdcard enabled YES.
100% definitely it work

On Wed, Sep 7, 2011 at 3:53 PM, vani reddy vani.reddy.bl...@gmail.comwrote:

 Hi friends ,
 I am getting the below exception
 FileNotfoundException /mnt/sdcard   Permission Denied
 i am storing a video in sdcard and  playing it.
 i am getting this when ii  run on phone.when i run on emulator it works
 fine .
 I am getting Illegal argument exception when trying to play the video , in
 the below line
 video.setdataSource(VIDEO PATH);
 What to do  for this ?


 --
 Regards,
 Vani Reddy

  --
 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

-- 
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] how to Change resolution of video by java /Android code

2011-09-07 Thread NAVI NEW
how to Change resolution of video by java /Android code . what is the
best config of video for android video play.

-- 
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: Need Help.. File Explorer Working with Code

2010-08-30 Thread Navi
Hi TreKing
yes pvt means private and
other users may be any other than the owner of mobile.
folder lock is an application used to secure data, using which we can
password protect our data or we can lock a directory.
 i want to know the step by step working of folder lock. if possible
please do reply with code.
sorry for my poor English. :(

thanks and regards
navi

-- 
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] Need Help.. File Explorer Working with Code

2010-07-23 Thread Navi
hello everybody. is there any API or any procedure to make the
directories of android Pvt. ? i.e when i want to secure some data from
other users i can make that directory password enabled.. there are so
many folder locks available in android market but i want to know the
exact working of that.. pls do reply with code and procedure..
thanks and regards..
Navdeep

-- 
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