• Home
Name Date Size #Lines LOC

..--

cast_core/api/03-May-2024-1,134927

common/03-May-2024-7,9325,530

protocol/03-May-2024-928823

receiver/03-May-2024-2,3701,823

sender/03-May-2024-3,4002,532

standalone_receiver/03-May-2024-2,4711,720

standalone_sender/03-May-2024-3,2342,148

streaming/03-May-2024-21,56014,536

test/03-May-2024-843691

third_party/03-May-2024-149

.gitignoreD03-May-202430 32

DEPSD03-May-2024279 1814

README.mdD03-May-20242.3 KiB5139

README.md

1# libcast
2
3libcast is an open source implementation of the Cast protocol supporting Cast
4applications and streaming to Cast-compatible devices.
5
6## Using the standalone implementations
7
8To run the standalone sender and receivers together, first you need to install
9the following dependencies: FFMPEG, LibVPX, LibOpus, LibSDL2, as well as their
10headers (frequently in a separate -dev package). From here, you just need a
11video to use with the cast_sender, as the cast_receiver can generate a
12self-signed certificate and private key for each session. You can also generate
13your own RSA private key and either create or have the receiver automatically
14create a self signed certificate with that key. If the receiver generates a root
15certificate, it will print out the location of that certificate to stdout.
16
17Note that we assume that the private key is a PEM-encoded RSA private key,
18and the certificate is X509 PEM-encoded. The certificate must also have
19the CA bit set in the basic constraints. The easiest way to test with a key
20and certificate is to use ones generated by the cast_receiver standalone
21application.
22
23## Developer certificate generation and use
24
25The easiest way to generate a private key and certificate is to just run
26the cast_receiver with `-g`, and both should be written out to files:
27
28```
29  $ /path/to/out/Default/cast_receiver -g
30    [INFO:../../cast/receiver/channel/static_credentials.cc(161):T0] Generated new private key for session: ./generated_root_cast_receiver.key
31    [INFO:../../cast/receiver/channel/static_credentials.cc(169):T0] Generated new root certificate for session: ./generated_root_cast_receiver.crt
32```
33
34These generated credentials can be passed in to start a session, e.g.
35```
36./out/Default/cast_receiver -d generated_root_cast_receiver.crt -p generated_root_cast_receiver.key lo0 -x
37```
38
39And then passed to the cast sender to connect and start a streaming session:
40```
41  $ ./out/Default/cast_sender -d generated_root_cast_receiver.crt ~/video-1080-mp4.mp4
42```
43
44When running on Mac OS X, also pass the `-x` flag to the cast receiver to
45disable DNS-SD/mDNS, since Open Screen does not currently integrate with
46Bonjour.
47
48When connecting to a receiver that's not running on the loopback interface
49(typically `lo` or `lo0`), pass the `-r <receiver IP endpoint>` flag to the
50`cast_sender` binary.
51