Questions tagged [mms]

Multimedia Message Service(MMS) is an extension of the Short Message Service(SMS) protocol which allows for multimedia to be passed in messages. Microsoft Media Server(MMS) is Microsoft's proprietary network streaming protocol for Windows Media.

585 questions
11
votes
1 answer

Android add MMS to database

I want to add some MMS messages into my device database. I've the following code but it doesn't work at all. No entry are added into the native app... public static Uri insert(Context context, String[] to, String subject, Uri messageUri) { try …
Manitoba
  • 8,522
  • 11
  • 60
  • 122
10
votes
4 answers

Detecting MMS messages on Android

I was searching through the internet for this topic and couldn't find any satisfying answer... I'm trying to detect MMS messages (incoming at least for start). And I've decided to go through the way of detecting changes in the contents. I've…
Dima Kolomiyets
  • 171
  • 1
  • 1
  • 10
10
votes
6 answers

How to attach Image with message via iPhone application?

I want to send message with image data. So I used MFMessageComposeViewController. But that controller provide only SMS service. So I used UIPasteBoard attached an image data. But It doesn't work, either. There are no "Paste" button created when…
huu
  • 109
  • 1
  • 1
  • 7
10
votes
2 answers

Is it possible to use MMS to stream Internet radio in Android?

Is possible to play an Internet radio stream in Android? And since most of the Internet radios use MMS to stream their content is that possible using Android?
maxsap
  • 2,971
  • 9
  • 44
  • 70
10
votes
3 answers

Streaming Audio MMS:// to the iPhone

I'd like to stream a mms:// url to my iPhone app, but so far information on the topic is hard to come by. I know there are a couple apps out there that can do it already (FStream, WunderRadio, Tuner), and I've read a few notes about them possibly…
Redth
  • 5,464
  • 6
  • 34
  • 54
9
votes
1 answer

How to query the MMS Log in Android

In my app I need to query both the SMS and the MMS log to get the history of all incoming and outgoing messages. This code has worked wonderfully for SMS: Cursor c = cr.query(Uri.parse("content://sms"), null, null, null, null); But when I try the…
Mark B
  • 183,023
  • 24
  • 297
  • 295
9
votes
2 answers

Trigger Android stock MMS app to send out pending messages

Now that 3rd party apps cannot read APN information, it seems that there's no way to send MMS programmatically (unless you ask the user to manually enter APN info -AND- you have a working APN defined in the phone's settings), so the only option…
Lior
  • 7,845
  • 2
  • 34
  • 34
8
votes
2 answers

MFMessageComposeViewController not displaying camera icon

When I bring up a "New Message" manually I will see a camera icon to the left of the text edit area. When I use the MFMessageComposeViewController it will not display this icon which means you cannot insert images. I know this can be done because…
whatchamacallit
  • 238
  • 1
  • 7
8
votes
4 answers

How can my app send MMS with a photo?

I would like to compose a message from my app which I can include a photo, for example: I entered my album in the IPhone and open a photo I can click on option and then on MMS tab and the photo will be added in a message and I can send it then to a…
user784625
  • 1,928
  • 5
  • 24
  • 38
8
votes
1 answer

how to send MMS from iPhone app

In my new iOS Project I'd like the end user to be able to MMS text and/or images(from TextField) in a UIButton Action . I've seen similar apps that has this functionality (with text, haven't seen one with images yet). I have search in google but…
Gregory Ortiz
  • 143
  • 2
  • 7
7
votes
1 answer

python-messaging Failed to handle HTTP request

I am using the code below to try to send an MMS message with python-messaging https://github.com/pmarti/python-messaging/blob/master/doc/tutorial/mms.rst Although the connection seems to go smoothly I get the following response from the mmsc: PROXY…
gatorreina
  • 864
  • 5
  • 14
7
votes
3 answers

Sending MMS programmatically on Android

I am having an issue with a task I'm supposed to do, I'm supposed to send MMS using our own interface on android 2.1 so as you can guess calling the default Activity is out of the question. So my question, is there a way to programatically send MMS…
Tancho
  • 1,581
  • 3
  • 22
  • 40
7
votes
0 answers

UIActivityViewController mixing text and images and keeping the order

Is it possible to mix images and text and send them as MMS? UIActivityViewController will share an image with text underneath, but no matter how I order the text and images, the images always appear on top and the text on the bottom. If it's not…
Mikey A. Leonetti
  • 2,834
  • 3
  • 22
  • 36
7
votes
3 answers

Android SDK MMS

Does anyone know how to programmatically send a MMS via the Android SDK? Any version of the SDK will do, just need to know where to get started. I know how to send / receive SMS, I now need to add a picture to the message before sending.
user160231
  • 109
  • 1
  • 3
  • 7
7
votes
3 answers

Send MMS programmatically

I want to send an MMS programmatically I used the following code for it Intent sendIntent1 = new Intent(Intent.ACTION_SEND); try { sendIntent1.setType("text/x-vcard"); sendIntent1.putExtra("address","0475223091"); …
Geethu
  • 1,586
  • 6
  • 21
  • 34
1
2
3
38 39