• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

JMF - Encrypted media streams

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

My intention is to send encrypted live media streams over the n/w.

I googled and found that live media can be encrypted using RTPConnector

RTPConnector

I used the programs available in the link below as my base - RTPSocketAdapter.java, AVTransmit3.java and AVReceive3.java

RTPConnector Code

I did changes primarily to the program RTPSocketAdapter.java.

I encrypted the streams using DES before "sock.send(new DatagramPacket(data, offset, len, addr, port));" and
I decrypted it after "sock.receive(p);"

Problem:
------------
The eventlisteners ReceiveStreamListener, SessionListener, ControllerListener in the program AVReceive3.java are not invoked when i receive an encrypted stream.

Kindly let me know how to complete my implementation
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic