0
votes
1answer
12 views

Access long key from meta-data from AndroidManifeast.xml

I implemented following code and want to access key meta-data value as String from MetaActivity.java AndroidManifeast.xml <manifest xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
75 views

Getting Metadata from Shoutcast stream Android

I am developing a Radio App for Android devices that is supposed to get streaming from a Shoutcast Server. The sound is working fine but I want to retrieve the MetaData as well so I might be able to ...
0
votes
1answer
48 views

Android metadata with manifest file - nullPointerException

I am attempting to access metadata for an activity from the manifest file. The manifest looks like this : <activity android:name="co.uk.benbun.nvrrclubapp.MainActivity" ...
0
votes
2answers
62 views

The <activity> element must be a direct child of the <application> element

I just wanted to launch my application, but it always fails and gives me this error. Before, it would just install the .apk file, but now it just fails to start at all. I just began and was following ...
1
vote
1answer
92 views

Extract metadata from video files on Android

I need to read metadata from video files on Android. I have taken a look at the tags available via MediaStore.Video.VideoColumns and android.media.MediaMetadataRetriever. However, both of these don't ...
1
vote
0answers
63 views

Android: MediaMetadataRetriver fails for ID3v2

I'm part of a group developing a media player for Android (API 11 and up) and we're having a rather vexing problems with MediaMetadataRetriever. It works fine on the Android 4.2.2 phone and various ...
1
vote
1answer
91 views

Writing arbitrary metadata to EXIF in Android

This question originated here: Writing EXIF metadata to images in Android . Can we use EXIF to write arbitrary metadata, i.e. other than those specified in the ExifInterface documentation (like ...
0
votes
1answer
114 views

MediaMetadataRetriever on streaming source

I am having a tough time displaying the current track playing from a streaming source. Using MediaMetaDataRetriever class returns a NULL, meaning it failed. I wrote a simple method but now I'm ...
0
votes
0answers
55 views

Charset detection in Android

My Android application retrieves SHOUTcast metadata and displays it. I'm having and issue with none-English character sets. Basically, the metadata is displayed as gibberish. How would I perform ...
0
votes
1answer
230 views

Error while trying to retrieve Metadata from a remote MP3 file Android

I'm working on a Radio Streming application for Android. The music is well recieved and played by the MediaPlayer class, but the problem is when I try to retrieve the Metadata, the App blocks and ...
0
votes
1answer
163 views

MediaMetadataRetriever show always the same meta-data

I have two MP3 files in the raw-directory. When I push the button, one of the 2 mp3-files is randomly selected and it begins to play, the meta-information (artist and title) of the song is ...
2
votes
1answer
252 views

Retrieving frames per second - Android / MediaMetadataRetriever

I'm looking to retrieve 10 frames per sec on a 5 second video using the MediaMetadataRetriever and store them into an Arraylist. I'm not interested in using ffmpeg. Currently my application is ...
1
vote
2answers
98 views

Specify Hex Color Value in Android Metadata

I am working on getting some meta-data working on Android. Most specifically, I am getting application-level meta-data to set a View's background in the following formats: <meta-data ...
-1
votes
1answer
114 views

My application isn't working smoothly

I am trying to develop a application. It is a radio application. When i use a method to show meta data that time it is creating some problem. 1.Play Pause button are not working smoothly. 2.Taking ...
0
votes
0answers
81 views

removing jpegs metadata in android

I have to compress an image (jpeg) in android application. While the compressing an image, does it strips out the metadata automatically? If not is there a way remove the metadata? Also is there any ...
2
votes
1answer
82 views

Google Drives SDK and powerpoint

I am currently developing a small android app using the google drive SDK/google doc's embedded player which will play through power point files in a slide-show manner. Since there's no direct way I ...
2
votes
1answer
642 views

Retrieve album art using FFmpeg

I'm developing an Android application that relies on FFmpeg to retrieve audio metadata. I know it's possible to retrieve album art programmatically using FFMpeg. However, once you have decoded the art ...
1
vote
1answer
442 views

How to read/write custom PNG metadata in Android?

I have to associate a couple of text parameters (a UUID and a couple of strings representing integers) to a PNG image in a way they can follow the image when the PNG file is passed from an Android ...
0
votes
1answer
45 views

Android Metadata Lookup Service

iTunes provides a Lookup Service for gathering metadata as JSON of an app given an app ID. Is there a similar service for Android? It needn't be a web service or necessarily return JSON, a Java API ...
0
votes
0answers
171 views

Android read custom xml resources from meta-data

I am writing a library that contains a splash screen activity and I want to be able to configure it by passing an res/xml/ resource to the meta-data of that activity in the AndroidManifest.xml file. ...
0
votes
0answers
50 views

What special bytes does Android store in Sphere Panoramic images?

In Android 4.2 Google has introduced the ability to take Sphere Panoromic pictures (read more). What I am interested in is that it also stores the direction and the pattern in which the picture was ...
0
votes
0answers
129 views

Any equivalent to MediaMetadataRetriever for capturing frames from a streamed video

Any library that can be used to capture snaphsots (frames) of a streamed video just like MediaMetadataRetriever.getFrameAtTime(long timeUs) does. The thing is I'm having problems with this class as ...
0
votes
1answer
38 views

Loading info based on data hardcoded into an image

I'm using some map based images in an Android app, and each map includes numbered waypoints and highlit paths between each waypoint. This map data has all been hard-coded into the map image. My ...
0
votes
0answers
407 views

Android: Passing metadata in a context

In the latest Facebook SDK (3.0) there is a check in the Session constructor that attempts to pull an application ID from the metadata associated with context/package/application. ApplicationInfo ai ...
0
votes
0answers
182 views

Android AACPlayer, how to get metadata?

I writing a very simple application - radio stream player, in AAC format from Icecast server. For my purposes, I use AACPlayer-Android. But, I can't find any ability, to handle metadata information. ...
1
vote
0answers
83 views

Contacts' custom fields not removed when app was uninstalled?

On Android, you can attach some metadata of your own to contacts, as shown here. It works, but it seems that if the user has uninstalled the app, it still exists and you can fetch this data on the ...
0
votes
0answers
226 views

How to extract metadata from image

Friends Help Me .... How to extract metadata from image that contains url as a meta data If i click the image it must open the corresponding link by accessing the metadata of the image Thanks in ...
-2
votes
1answer
122 views

why android need to use meta-data?

i found some AndroidManifest.xml have some . like this: <meta-data android:name="zoo" android:value="@string/kangaroo" /> code in Android: ApplicationInfo ai = ...
8
votes
3answers
518 views

Android MediaMetadataRetriever returns null values from most keys

I want to get information out of my media files (mp3 mostly) and I get only null from those values I want. I have tried all keys for extractMetadata(key). Am I skipping/missing something? Code basis: ...
1
vote
1answer
631 views

Embedding Metadata to H.264 encoded file

I am currently developing an application which produces certain metadata with respect to preview frames coming from the camera. I can see this metadata being produced properly and I have no problems ...
-1
votes
2answers
288 views

Pass URL into asynctask from AlertDialog user input, pull Icy metadata

I have an Asynctask set up to pull icy metadata from shoutcast streams that works great if I put the URL in code, but i want an AlertDialog to pass a URL to the Asynctask from user input. I'm calling ...
0
votes
0answers
128 views

Android reading pdf metadata - memory issue

I'm currently building an android application that displays a set of pdf files in a ListView. Instead of just displaying the filename I want to grab the Title from the metadata of the pdf and display ...
2
votes
1answer
133 views

How to store metadata about files on sdcard?

I am planning to create a voice recorder app. I will store my file on the sd card. And I want to store some metadata about them. Name, description, etc. How should I do it? I was thinking to create an ...
0
votes
1answer
402 views

What is the unit of measurment for media duration in MediaMetadataRetriever

One can use String MediaMetadataRetriver.extractMetadata(int key); with key = MediaMetadataRetriver.METADATA_KEY_DURATION to extract the media duration. This function returns a String, but ...
0
votes
1answer
227 views

What is the purpose of metadata in xml file?

I saw a program in which they use metadata. What is the purpose of this..? "meta-data android:name="android.app.device_admin" android:resource="@xml/device_admin_sample" "
0
votes
1answer
157 views

I Need to store a bunch of data in a table database and pull from it in my android application

Ok so heres the skinny i am new to the whole android platform and am trying to basically put all the info i need into a database table and then pull info into my activities basically like.... each row ...
3
votes
2answers
495 views

Is there a way to keep meta-data in the Android manifest private to the package?

I want to use meta-data in the Android manifest to customize the behavior of a service. <service android:name=".SampleService" android:exported="false"> <meta-data ...
1
vote
2answers
515 views

Accessing Metadata from currently playing audio. (Builtin or External App)

I am trying to develop an app/widget for which I need display the currently playing information (metadata) of an audio track. This would be trivial if I was also writing the MediaPlayer myself, as I ...
0
votes
3answers
551 views

Song change notification for shoutcast (on android)

Using the native Android MediaPlayer class I am able to play Shoutcast streams. Furthermore, using streamscraper (http://code.google.com/p/streamscraper/) I am able to get the metadata for the current ...
16
votes
3answers
3k views

Android : How to get and set(Change) ID3 tag(metadata) of audio files?

I am working to change ID3 tag, metadata of audio files of particular. Like: Artist Title Album etc. And the core point,. that edited ID3 tags should be shown only into my app. Looking for a ...
-4
votes
1answer
141 views

How much information does a geotagged picture contain ? or specifically can contain? [closed]

This is an open ended question. With the capabilities of current geo-enabled phones and cameras (based on gps) when a geo-enabled picture is taken at a certain location What all metadata is added to ...
3
votes
1answer
325 views

Change package manager application info meta data in android

I would like to change the value of a meta-data in the AndroidManifest.xml file : I am using the following code : ApplicationInfo applicationInfo = packageManager.getApplicationInfo( ...
1
vote
3answers
242 views

What is the difference between the abc.db and abc.sqlite for android?

i have seen many android database application. Some of the application have its database with .sqlite extension while some have .db extension. What is the difference betwwen those both ? Should it ...
1
vote
1answer
2k views

how to get metadata of a streaming online radio

I am developing an app in Android 2.2 . I need get metadata of a streaming online radio, for example shoutcast. I use class IcyStreamMeta: public class IcyStreamMeta<Message> { protected URL ...
1
vote
1answer
240 views

Downloading mp3 with meta data/properties such as title, artists and etc

I have the following code. Everything works fine except that the downloded MP3 file does not have any property (metadata) such as Artist, title and etc when I play using the default music player. If ...
0
votes
1answer
1k views

Receiving Info of a ShoutCast stream on Android

I am currently making an app to go with my online radio site, I am coding it with Android 2.2 (API 8) and I have got the Shoutcast Stream working with two buttons. Here is the code on my main class: ...
0
votes
1answer
1k views

textview not updating (shoutcast stream metadata in android 2.2)

i have a IcyStreamMeta.class that gets the metadata info of shoutcast Stream i use the method below to update the textview in my main activity and display the current song title playing. the code ...
2
votes
0answers
684 views

how to get song title from shoutcast stream in android 2.2

is there a way in retrieving the song title in shoutcast mp3 stream, i have tried the code below and its not working in android 2.2 but it works in android 2.1 and android 1.5 i need to get the song ...
4
votes
2answers
1k views

Best Way to Retrieve MetaData from Mp3s In Android

I've been working on a small media player app for Android. I'm having some trouble retrieving the meta data from the music files. I've been using the MediaMetadataRetriever, but it has proved to be ...
1
vote
0answers
569 views

How can I get metadata from a http stream in Java?

Suppose I am receiving audio stream for example from the following urls : IdobiRadio "http://83.133.126.34:80" Cool93 Fahrenheit "http://203.150.224.142:8000" How can I get meta information like ...

1 2