Broadcasting video with Android - without writing to local files

in

One of the weaker points of the Android platform is the Media API. When compared to the J2ME API, one important feature is missing: the ability to record to a stream and to playback from a stream.

Why is this important? There are a number of use cases.

For recording:

  • post-processing audio / video data before writing out to the file system
  • broadcasting audio / video without writing out the data first into the file system, which also limits the broadcast to the available free space on the device.

For playback:

  • pre-processing the audio / video data before playing
  • streaming using protocols that are not supported by the built-in media player

In this blog entry we will show a method to broadcast video (and audio) from an Android phone to a network server, without writing to the file system.

There is one promising method in the MediaRecorder class setOutputFile(FileDescriptor).

We know that in Linux also network sockets have file descriptors. But how could we access the file descriptor of a regular java.net.Socket?

Luckily, ParcelFileDescriptor comes to the rescue, where we can use the fromSocket(Socket) static method to create a ParcelFileDescriptor instance from a Socket object. From this instance, we may now grab the badly needed FileDescriptor.

It all boils down to these few lines (in pseudocode):

String hostname = "your.host.name";
int port = 1234;

Socket socket = new Socket(InetAddress.getByName(hostname), port);

ParcelFileDescriptor pfd = ParcelFileDescriptor.fromSocket(socket);

MediaRecorder recorder = new MediaRecorder();

// Additional MediaRecorder setup (output format ... etc.) omitted

recorder.setOutputFile(pfd.getFileDescriptor());

recorder.prepare();

recorder.start();

Using this concept we created a small proof of concept application (together with an even simpler server), which is able to broadcast videos not limited in length by the available space on the SD Card.

There are a few gotchas, if you want to try this out yourself:

  • The MediaRecorder records either in 3GPP or in MP4 format. This file format consists of atoms, where each atom starts with its size. There are different kinds of atoms in a file, mdat atoms store the actual raw frames of the encoded video and audio. In the Cupcake version Android starts writing out an mdat atom with the encoded frames, but it has to leave the size of the atom empty for obvious reasons. When writing to a seekable file descriptor, it can simply fill in the blanks after the recording, but of course socket file descriptors are not seekable. So the received stream will have to be fixed up after the recording is finished, or the raw video / audio frames have to be processed by the server.
  • For some reason, the MediaRecorder also leaves the header of the file blank, which also has to be handled on the server.
  • High latency connections will cause the video to be choppy. Obviously some buffering is necessary. One method is to use a local mini server on the phone which receives the stream, buffers it, and sends to the remote server as fast as the network allows it. However, if using native code is an option, we can simply create a pipe to receive the data from the MediaRecorder. We will show this method in a future blog entry.

Trackback URL for this post:

http://www.mattakis.com/trackback/30

Comments

very usefull

very usefull material,
thanks

I could use this almost

I could use this almost everyday.
tampa seo

Hi kisg, can you provide its

Hi kisg,

can you provide its full working source please?

really appreciate your help

Thanks for sharing great

Thanks for sharing great technique..

obviously very few people will know abt socket to fd.

thx
suds

Any tips for server side?

Hi

Can You please give some tips for the server side?
What are you using to capture/broadcast the stream?

thx
T

hi i have try to receive and

hi i have try to receive and play by MediaPlayer using this way

but i can't setup and play it.

could you give me some hint for that?

Socket socket = new Socket(serverAddr, PORT); //use tcp to receive
pfd = ParcelFileDescriptor.fromSocket(socket); //set pfd
MP = new MediaPlayer();
MP.setAudioStreamType(AudioManager.STREAM_MUSIC); //create MediaPlayer
MP.setDataSource(pfd.getFileDescriptor()); //set datasource by pfd
MP.prepare();
MP.start();

do i miss to set something?

thx

the same

Hi

i habe the save problem.

do u have got it out now?

thanks

Friend have you find any

Friend have you find any solution ?? plz let me know if you have.

Have u found its working.

Have u found its working, If yes then plz share it. I am get stuck at same point.
Thanks,
Parag Patel

Good post, but I have one more question...

Hi all,

really useful post... I would like to add one more element. I also need to stream raw data without any form of video encoding... is it possible to do???

Thanks and how about DatagramSocket?

Thanks for this wonderful post. I've been pulling my hair out on this for hours now. Is it possible to do a similar trick with a datagram socket?

Mark

Trying to get this to work

Hi kisg,

I've been trying to get this to work for a few weeks now... Do you have more information/documentation or code I could look at? It would be incredibly helpful if you could post them on the site or send them to me. Thanks.

Pat

Great

Great kisg,

please more details and snipped code, could be a success for all.
Thanks
Stefano

"For some reason, the

"For some reason, the MediaRecorder also leaves the header of the file blank, which also has to be handled on the server."
Any ideas how to handle this?
Is there a posibility to generate the header on the Server?

Awesome! Works flawlessly and

Awesome!
Works flawlessly and smooth!
I didn't even had to fix the stream, as the file generated on the server is working.
My previous attempt at this was to create 10s files and send them.

Repairing the Output

Just to help those having issues, the SDK seems to try to seek to insert the size values of the mdat atom, and also the moov header.

I set the encoder in this example to produce a THREE_GPP file.

In order to play the output THREE_GPP, you're going to need to first create the header in the first 28 bytes prior to the mdat atom (which should all be zeros).

00 00 00 18 66 74 79 70 33 67 70 34 00 00 03 00 33 67 70 34 33 67 70 36 00 02 F1 4D 6D

The 6D is the 'm' first byte in the mdat atom. The four bytes proceeding that need to be modified to include the integer value of the byte in your stream containing the output moov atom (Which should be output upon stopping the recording). As long as this header is correctly set, and the player can locate the moov atom- everything should play back correctly.

Also, the socket method here isn't very flexible- you can perform finer alterations of the packet data to a network (I'm attempting this at the moment for live streaming), by providing it with a local socket, and then connecting to that local socket and processing its output independently (In a thread for instance) for transmission over UDP, RTP, etc..

- Jason

Play incoming stream

Can we do same thing (user local socket) to receive incoming RTP stream which has H326 encodec data?

I have successfully send RTP stream, but when same way going to receive incoming RTP stream, MediaPlayer setDataSource function goes fail. giving me "offset error". I have looked Android MediaPlyer code, its giving error at below point.


status_t MediaPlayerService::Client::setDataSource(int fd, int64_t offset, int64_t length)
{
LOGV("setDataSource fd=%d, offset=%lld, length=%lld", fd, offset, length);
struct stat sb;
int ret = fstat(fd, &sb);
if (ret != 0) {
LOGE("fstat(%d) failed: %d, %s", fd, ret, strerror(errno));
return UNKNOWN_ERROR;
}
LOGV("st_dev = %llu", sb.st_dev);
LOGV("st_mode = %u", sb.st_mode);
LOGV("st_uid = %lu", sb.st_uid);
LOGV("st_gid = %lu", sb.st_gid);
LOGV("st_size = %llu", sb.st_size);
if (offset >= sb.st_size) {
LOGE("offset error");
::close(fd);
return UNKNOWN_ERROR;
}

Can any one help me to understand what I am doing wrong?

Thanks,
Parag Patel

It needs to understand the format.

Parag,

I'm trying to the same thing now- setting the data source to an fd with RTP data on it isn't going to work- since it has no ability to automatically detect the format type. There's no way to set this manually either :( MediaPlayer does support RTSP though, and it should be possible to send it the right SDP information to accomplish this.. I'm amazed nobody else has done this as far as I can tell...

- Jason Thomas.

Source

Hi Parag,

Can you please share the code for sending RTP stream?

Thanks,
Anu

"Just to help those having

"Just to help those having issues, the SDK seems to try to seek to insert the size values of the mdat atom, and also the moov header.

I set the encoder in this example to produce a THREE_GPP file.

In order to play the output THREE_GPP, you're going to need to first create the header in the first 28 bytes prior to the mdat atom (which should all be zeros).

00 00 00 18 66 74 79 70 33 67 70 34 00 00 03 00 33 67 70 34 33 67 70 36 00 02 F1 4D 6D

The 6D is the 'm' first byte in the mdat atom. The four bytes proceeding that need to be modified to include the integer value of the byte in your stream containing the output moov atom (Which should be output upon stopping the recording). As long as this header is correctly set, and the player can locate the moov atom- everything should play back correctly.

Also, the socket method here isn't very flexible- you can perform finer alterations of the packet data to a network (I'm attempting this at the moment for live streaming), by providing it with a local socket, and then connecting to that local socket and processing its output independently (In a thread for instance) for transmission over UDP, RTP, etc..

- Jason"

Thank google (and you, Jason) for this!

I merely wanted to stream the MediaRecorder data immediately to a server for storing a usable file, but was obviously unsuccessful due to missing header information. Upon fixing up the file as you indicated, I got what I wanted.

While it can't be played as a stream due to the moov box data not preceding the mdat box (apparently a requirement for streaming player reception), that is not my current need.

sample code in sipdroid.org

you can get the sample code in VideoCamera.java in Sipdroid.org.

as for playback, it seems that android mediaplayer can not play rtp stream for lacking sdp information. if I am wrong, please correct me.
thanks.

Play the stream

Hi folks,

I think I made some code that works, with some help from this page and looking at the code of the sipdroid. Now I want to play this stream in my computer, but I don't know how. It tried with VLC but I couldn't make it work. I am using ubuntu 9.04. Someone have some tips for me? If you are interested in the code I can paste it here.

Regards,

Roger

Hi Roger, Sorry, don't have

Hi Roger,

Sorry, don't have any tips for you, but would love to see working code for this process.

Thanks!
Scott

nice work

you say J2ME can stream video to a server but I dont think it can?

The android code would be most useful but I will try this later, thanks for the great post.

Hi, You can specify

Hi,

You can specify setOutputStream for the RecordControl. Then you can take this stream and send it to a remote server through the network.

Best Regards,
Gergely

There's no

There's no "setOutputStream()" method for "MediaRecorder"

Hi, coudl you guys (blogger

Hi, coudl you guys (blogger or you others) that made it work all the way) so you can see whats being captured on the pc, share the code please?

Im having troubles figuring how to handle the stream at the other end (server)

I got the same troubles in

I got the same troubles in the other end too.

Android phones are the best.

Android phones are the best. When will iPhone renounce its software and use Android instead?
Cheap VPS

009 来祝贺

rolex

Carol Mueller said replica watches her husband remained replica consistently devoted tag heuer to this project fake rolex After coming up rolex with the idea

watches

spent every weekend replica watches working on it fake watches He would be out there watches all day Saturday replica rolex and all day Sunday cartier she said.While Keith breitling did most of the work

" All shows are archived

" All shows are archived tissot on Hulu for viewing.
Click Here replica watches for the Blotter Homepage.
Gun breitling aeromarine Sales Expected to Shoot Up
Supreme tissot quadrato chronograph Court Ruling Seen as Windfall tudor women for Firearms Manufacturers, Dealers
By RICH knock off jewelry BLAKE
July 16, 2010—
After a prs200 Supreme Court decision affirming the piaget replica right to bear arms was dior jewelery handed down in June, the gucci bracelets owners of Midwest Sporting Goods, rado watches for men just outside of Chicago, started baume & mercier riviera noticed something any retailer

Nice to hear about

Nice to hear about it.
vehicle tracking

Wholesale NFL jerseys and

Wholesale NFL jerseys and retail wholesale nfl jerseys
,NHL jerseys,MLB jerseys,NBA jerseys,hockey jerseys,Throwback football jerseys,we also wholesale jerseys
wholesale cheap
NFL jerseys,wholesale mlb jerseys
-Welcome to the best wholesale NFL jerseys shop,we are one of the largest NFL jerseys wholesaler on the web.

I would like to say thank you

I would like to say thank you to author of these articles on this site. I read all of these articles and i need to read some new articles. I've watched a video on youtube about this topic for now and i loved it. Also it is one of the rarely topic on this site.

See you on a new topic...

jerseys2

We have many nfl jerseys in stock, if you need ,you can open nfl jerseys site.

nike air max 95

radii shoes
radii shoes for sale
cheap radii shoes
discount radii shoes
radii for sale
radii sneakers
cheap radii sneakers
radii footwear
radii footwear for sale
cheap radii footwear
discount radii footwear
radii footwear sale
radii shoes cheap
radii spring 2010
radii 420 top
radii 420
cheap radii 420 top
discount radii 420 top
radii 420 top sale
cheap radii 420
discount radii 420
radii 420 sale
radii 420 shoes
radii straight shoes
radii straight jackets
radii straight jacket shoes
radii straight jacket 2010
radii strangler shoes
cheap radii strangler shoes
radii strangler shoes sale
radii timeless deluxe
cheap radii timeless deluxe
radii timeless deluxe sale
radii shoes women
radii strangler women
radii footwear women

nike air max 95
cheap nike air max 95
nike air max 95 sale
nike air max 90
cheap nike air max 90
nike air max 90 sale
nike air max 2009
cheap nike air max 2009
nike air max 2009 sale
nike air max 2010
cheap nike air max 2010
nike air max 2010 sale
nike air max 91
cheap nike air max 91
nike air max 91 sale
nike air max skyline
nike air max skyline sale
cheap nike air max skyline
jordan shoes
cheap jordan shoes
jordan shoes for sale
jordan shoes cheap
cheap air jordan shoes
cheap jordan shoes for sale
cheap jordan sneakers
cheap jordan retro
discount jordan shoes
cheap jordans
air jordan heels
cheap air jordan high heels
womens jordans heels
jordan women high heels
jordan women boots
high heels jordans
cheap air jordan heels
air jordan heels sale
jordan heels
air jordan high heels
jordan high heels boots
jordan heels
air jordan women boots
air jordan women's shoes
air jordan boots
jordan high heels
nike air jordan high heels
ato matsumoto shoes
ato shoes
ato shoes sale
cheap ato shoes
ato matsumoto sneakers
cheap ato matsumoto shoes
ato matsumoto sale
ato matsumoto shoes sale
creative recreation shoes
cr shoes
cheap cr shoes
cr shoes sale
creative recreation sneakers
creative recreation cesario
creative recreation sale
cheap creative recreation shoes
creative recreation shoes sale
ken griffey shoes
cheap ken griffey shoes
ken griffey shoes sale
Nike Ken Griffey shoes
Nike air Griffey shoes
air griffey max 1
air griffey max 1 for sale
nike air griffey max 1
cheap Ken Griffey
nike ken griffey
cheap Nike Ken Griffey
nike Ken Griffey sale
nike air 1/2 cent
nike air 1/2 cent penny
nike air 1/2 cent penny for sale
nike air 1/2 cent penny hardaway
nike air 1/2 cent cranberry
nike air 1/2 half cent penny cranberry
nike air 1/2 half cent penny
nike air penny 1/2 cent
nike air 1/2 cent sneakers
nike air penny shoes
air penny 1/2 cent
nike air peeny shoes
nike air max penny 1
nike air penny hardaway
air max penny 1 for sale
cheap nike air penny
air penny 1/2 cent
nike air max 24 7
nike air max 24 7 shoes
nike air max 24 7 sneakers
chea nike air max 24 7
nike air max 24 7 sale
nike air max 24 7 cheap
cheap air max 24 7
discount nike air max 24 7
nike air max 24 7 neon
nike air max 24 7 black grey volt
nike air max 24 7 chili
nike air max 24 7 black green
nike air max 24 7 purple
nike air max 24/7
radii shoes
radii for sale
cheap radii shoes
radii shoes sale
cheap radii footwear
radii footwear sale
radii footwear
radii 420 top shoes
Radii Straight Jacket
radii straight shoes
radii 420 top sale
cheap radii 420 top
radii 420
radii 420 shoes
radii women
radii straight
radii timeless deluxe
Reebok Shoes
reebok pump 20th anniversary
reebok pump shoes
Reebok pumps Omni lite
reebok pumps
reebok pumps sale
cheap Reebok Shoes
Reebok Shoes sale
cheap Reebok pumps
reebok pump court victory
reebok pump omni lite sale
reebok pump basketball shoes
reebok pump shoes for sale
reebok zig pulse
zig pulse shoes
cheap zig pulse shoes
cheap reebok zig pulse
Reebok Zig Pulse

cheap ghd

cheap ghd
ghd iv styler
ghd flat iron
cheap ghds
ghd for sale
ghd hair straightener
cheap ghd hair straightener
ghd cheap
ghd mk4 straighteners
ghd straighteners
ghd straighteners sale
ghd hair straighteners
cheap ghd straighteners
discount ghd
discount ghd straighteners
ghd hair straightener sale
green envy ghd
ghd green envy
green envy ghd iv styler
ghd iv green envy styler
green envy ghd straighteners
purple indulgence ghd
ghd purple indulgence
purple indulgence ghd iv styler
ghd iv purple indulgence styler
purple indulgence ghd straighteners
red lust ghd
ghd red lust
red lust ghd iv styler
ghd iv red lust styler
red lust ghd straighteners
blue serenity ghd
ghd blue serenity
blue serenity ghd iv styler
ghd iv blue serenity styler
blue serenity ghd straighteners
Limited Edition ghd precious gift set
precious ghd iv styler limited edition
precious ghd limited edition gift sest
ghd precious gift set
ghd precious
cheap ghd precious
cheap ghd precious limited edition
ghd precious limited edition
limited edition ghd precious
Precious ghd straighteners
Limited Editon ghd straighteners
pink ghd
pink ghd iv styler
pink ghd limited edition
pink ghd hair straightener
pink ghd straighteners
pink ghd limited edition
ghd mini
ghd iv mini styler
ghd mini straighteners
gold ghd
ghd iv gold styler
gold ghd iv limited edition
gold ghd iv styler
gold ghd straighteners
ghd kiss
ghd iv kiss styler
pink ghd iv kiss styler
ghd kiss straighteners
pink kiss ghd hair straightener
hot pink ghd
ghd iv hot pink styler
hot pink ghd iv styler
hot pink ghd straighteners
purple ghd
ghd iv purple styler
purple ghd limited edition
purple ghd iv styler
limited edition purple ghd straighteners
purple ghd straighteners
ghd iv salon styler
ghd salon straighteners
ghd black
ghd iv black styler
black ghd straighteners
ghd dark
ghd iv dark styler
pure black ghd straighteners
pure black ghd iv styler
white ghd straighteners
pure white ghd iv styler
ghd rare
ghd rare straighteners
ghd benefit
ghd benefit straighteners

cheap ghd
ghd iv styler
ghd flat iron
cheap ghds
ghd for sale
ghd hair straightener
cheap ghd hair straightener
ghd cheap
ghd mk4 straighteners
ghd straighteners
ghd straighteners sale
ghd hair straighteners
cheap ghd straighteners
discount ghd
discount ghd straighteners
ghd hair straightener sale
green envy ghd
ghd green envy
green envy ghd iv styler
ghd iv green envy styler
green envy ghd straighteners
purple indulgence ghd
ghd purple indulgence
purple indulgence ghd iv styler
ghd iv purple indulgence styler
purple indulgence ghd straighteners
red lust ghd
ghd red lust
red lust ghd iv styler
ghd iv red lust styler
red lust ghd straighteners
blue serenity ghd
ghd blue serenity
blue serenity ghd iv styler
ghd iv blue serenity styler
blue serenity ghd straighteners
Limited Edition ghd precious gift set
precious ghd iv styler limited edition
precious ghd limited edition gift sest
ghd precious gift set
ghd precious
cheap ghd precious
cheap ghd precious limited edition
ghd precious limited edition
limited edition ghd precious
Precious ghd straighteners
Limited Editon ghd straighteners
pink ghd
pink ghd iv styler
pink ghd limited edition
pink ghd hair straightener
pink ghd straighteners
pink ghd limited edition
ghd mini
ghd iv mini styler
ghd mini straighteners
gold ghd
ghd iv gold styler
gold ghd iv limited edition
gold ghd iv styler
gold ghd straighteners
ghd kiss
ghd iv kiss styler
pink ghd iv kiss styler
ghd kiss straighteners
pink kiss ghd hair straightener
hot pink ghd
ghd iv hot pink styler
hot pink ghd iv styler
hot pink ghd straighteners
purple ghd
ghd iv purple styler
purple ghd limited edition
purple ghd iv styler
limited edition purple ghd straighteners
purple ghd straighteners
ghd iv salon styler
ghd salon straighteners
ghd black
ghd iv black styler
black ghd straighteners
ghd dark
ghd iv dark styler
pure black ghd straighteners
pure black ghd iv styler
white ghd straighteners
pure white ghd iv styler
ghd rare
ghd rare straighteners
ghd benefit
ghd benefit straighteners

cheap ghd
ghd iv styler
ghd flat iron
cheap ghds
ghd for sale
ghd hair straightener
cheap ghd hair straightener
ghd cheap
ghd mk4 straighteners
ghd straighteners
ghd straighteners sale
ghd hair straighteners
cheap ghd straighteners
discount ghd
discount ghd straighteners
ghd hair straightener sale
green envy ghd
ghd green envy
green envy ghd iv styler
ghd iv green envy styler
green envy ghd straighteners
purple indulgence ghd
ghd purple indulgence
purple indulgence ghd iv styler
ghd iv purple indulgence styler
purple indulgence ghd straighteners
red lust ghd
ghd red lust
red lust ghd iv styler
ghd iv red lust styler
red lust ghd straighteners
blue serenity ghd
ghd blue serenity
blue serenity ghd iv styler
ghd iv blue serenity styler
blue serenity ghd straighteners
Limited Edition ghd precious gift set
precious ghd iv styler limited edition
precious ghd limited edition gift sest
ghd precious gift set
ghd precious
cheap ghd precious
cheap ghd precious limited edition
ghd precious limited edition
limited edition ghd precious
Precious ghd straighteners
Limited Editon ghd straighteners
pink ghd
pink ghd iv styler
pink ghd limited edition
pink ghd hair straightener
pink ghd straighteners
pink ghd limited edition
ghd mini
ghd iv mini styler
ghd mini straighteners
gold ghd
ghd iv gold styler
gold ghd iv limited edition
gold ghd iv styler
gold ghd straighteners
ghd kiss
ghd iv kiss styler
pink ghd iv kiss styler
ghd kiss straighteners
pink kiss ghd hair straightener
hot pink ghd
ghd iv hot pink styler
hot pink ghd iv styler
hot pink ghd straighteners
purple ghd
ghd iv purple styler
purple ghd limited edition
purple ghd iv styler
limited edition purple ghd straighteners
purple ghd straighteners
ghd iv salon styler
ghd salon straighteners
ghd black
ghd iv black styler
black ghd straighteners
ghd dark
ghd iv dark styler
pure black ghd straighteners
pure black ghd iv styler
white ghd straighteners
pure white ghd iv styler
ghd rare
ghd rare straighteners
ghd benefit
ghd benefit straighteners

cheap ghd
ghd iv styler
ghd flat iron
cheap ghds
ghd for sale
ghd hair straightener
cheap ghd hair straightener
ghd cheap
ghd mk4 straighteners
ghd straighteners
ghd straighteners sale
ghd hair straighteners
cheap ghd straighteners
discount ghd
discount ghd straighteners
ghd hair straightener sale
green envy ghd
ghd green envy
green envy ghd iv styler
ghd iv green envy styler
green envy ghd straighteners
purple indulgence ghd
ghd purple indulgence
purple indulgence ghd iv styler
ghd iv purple indulgence styler
purple indulgence ghd straighteners
red lust ghd
ghd red lust
red lust ghd iv styler
ghd iv red lust styler
red lust ghd straighteners
blue serenity ghd
ghd blue serenity
blue serenity ghd iv styler
ghd iv blue serenity styler
blue serenity ghd straighteners
Limited Edition ghd precious gift set
precious ghd iv styler limited edition
precious ghd limited edition gift sest
ghd precious gift set
ghd precious
cheap ghd precious
cheap ghd precious limited edition
ghd precious limited edition
limited edition ghd precious
Precious ghd straighteners
Limited Editon ghd straighteners
pink ghd
pink ghd iv styler
pink ghd limited edition
pink ghd hair straightener
pink ghd straighteners
pink ghd limited edition
ghd mini
ghd iv mini styler
ghd mini straighteners
gold ghd
ghd iv gold styler
gold ghd iv limited edition
gold ghd iv styler
gold ghd straighteners
ghd kiss
ghd iv kiss styler
pink ghd iv kiss styler
ghd kiss straighteners
pink kiss ghd hair straightener
hot pink ghd
ghd iv hot pink styler
hot pink ghd iv styler
hot pink ghd straighteners
purple ghd
ghd iv purple styler
purple ghd limited edition
purple ghd iv styler
limited edition purple ghd straighteners
purple ghd straighteners
ghd iv salon styler
ghd salon straighteners
ghd black
ghd iv black styler
black ghd straighteners
ghd dark
ghd iv dark styler
pure black ghd straighteners
pure black ghd iv styler
white ghd straighteners
pure white ghd iv styler
ghd rare
ghd rare straighteners
ghd benefit
ghd benefit straighteners

accept paypal gucci shoes,louis vuitton sneakers,ed hardy t shir

[url = http://www.airjordanforsale.com ]wholesale nike shox air max[/url]
[url = http://www.airjordanforsale.com ]wholesale air max 24/7[/url]
[url = http://www.airjordanforsale.com ]wholesale gucci shoes[/url]
[url = http://www.airjordanforsale.com ]wholesale docle gabbana t shirts[/url]
[url = http://www.airjordanforsale.com ]wholesale coach handbags[/url]
[url = http://www.airjordanforsale.com ]wholesale gucci clothes[/url]
[url = http://www.airjordanforsale.com ]wholesale ed hardy clothing[/url]
[url = http://www.airjordanforsale.com ]wholesale louis vuitton[/url]
[url = http://www.airjordanforsale.com ]wholesale nike air max shoes[/url]
[url = http://www.airjordanforsale.com ]wholesale gucci handbags[/url]

Authentic NFL Jerseys

wholesale jerseys,wholesale jerseys
,taylor mays 49ers,Authentic Jerseys
,Authentic NFL Jerseys,jersey
,Authentic Jerseys,taylor mays 49ers

Authentic NFL Jerseys,

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is to prevent automated spam submissions.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.