Have to rewrite the video to include a watermark! Look for a library to do it, or video manipulation. Not an easy thing to do if you don't really know anything about video / graphics, so I'd look for some open source code (and libraries) that do this and try to read up on them, you won't be able to modify the stream directly. (Or at least, it would be stupid to reinvent the wheel.)
On Thu, Nov 10, 2011 at 6:00 AM, giles ian <[email protected]> wrote: > Hi Kristopher, > thanks for the quick reply. > i want to do it offline. > i did read your below suggestion but i did not get it. > Let me tell u what i have done so far: > 1. Launching the cam using > "Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE)" > 2. Capturing the video and getting the data in android.net.Uri. > now how to proceed further ?? > > On Thu, Nov 10, 2011 at 11:59 AM, Kristopher Micinski > <[email protected]> wrote: >> >> do you want to do this online or offline? There aren't any kinds of >> intents for this, rightfully so, if you want a watermark online you'll >> have to capture the stream, apply the filter (or whatever), then pump >> it back out. If you want to do it offine you do the same thing, >> except you can parse the video file (obviously not yourself, using >> some library), apply the mark, and re encode the new thing and put it >> in a new file to play. >> >> kris >> >> On Thu, Nov 10, 2011 at 12:34 AM, giles ian <[email protected]> >> wrote: >> > Hello, >> > I want to take a video from with in my app and embed(or add) some >> > text/watermark on the video. Plz suggest me how can this be done. >> > And also tell me which of the below method would be suitable: >> > 1. Using Intent (android.provider.MediaStore.ACTION_VIDEO_CAPTURE) >> > 2. Using MediaRecorder >> > Thanks >> > >> > -- >> > You received this message because you are subscribed to the Google >> > Groups "Android Developers" group. >> > To post to this group, send email to [email protected] >> > To unsubscribe from this group, send email to >> > [email protected] >> > 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 [email protected] >> To unsubscribe from this group, send email to >> [email protected] >> 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 [email protected] > To unsubscribe from this group, send email to > [email protected] > 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

