Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
b908275
init
shinyoshiaki Apr 28, 2021
5a3f502
wip
shinyoshiaki Apr 28, 2021
1163259
fix
shinyoshiaki Apr 28, 2021
b14f161
move files
shinyoshiaki Apr 29, 2021
5ec4766
rm
shinyoshiaki Apr 29, 2021
8efd0b5
build,lint
shinyoshiaki Apr 29, 2021
d572a30
enhance example
shinyoshiaki Apr 29, 2021
ba2bb5a
example: add dc
shinyoshiaki May 1, 2021
acd44ca
consume data
shinyoshiaki May 4, 2021
8b7d5c0
fix example
shinyoshiaki May 4, 2021
0b5985c
impl datachannel produce
shinyoshiaki May 4, 2021
88ea6ee
Merge branch 'develop' into main
shinyoshiaki May 4, 2021
0d71e0c
vendor werift
shinyoshiaki May 8, 2021
32fca5b
wip
shinyoshiaki May 9, 2021
ab694ce
remove vendor
shinyoshiaki May 9, 2021
e8ac4ec
Merge branch 'develop' into main
shinyoshiaki May 10, 2021
0cd78f0
rm gabage
shinyoshiaki May 10, 2021
da9b046
rm lock file
shinyoshiaki May 10, 2021
04040e2
Merge branch 'develop' into main
shinyoshiaki May 10, 2021
907b3e5
impl weriftRtpCapabilities
shinyoshiaki May 10, 2021
c7e5d6c
refactor
shinyoshiaki May 11, 2021
630bdcc
build
shinyoshiaki May 11, 2021
c296944
fix
shinyoshiaki May 11, 2021
0b59eaf
update doc
shinyoshiaki May 11, 2021
f0e0a15
fix
shinyoshiaki May 11, 2021
06f66b5
Update README.md
shinyoshiaki May 11, 2021
00596bf
Update README.md
shinyoshiaki May 11, 2021
16ce63d
Update README.md
shinyoshiaki May 11, 2021
4a7cd29
improve
shinyoshiaki May 16, 2021
08570c6
refactor
shinyoshiaki May 16, 2021
4063465
add audio test
shinyoshiaki May 16, 2021
a0c5f2d
add test
shinyoshiaki May 17, 2021
b3ccdc0
add test
shinyoshiaki May 17, 2021
933e258
add test
shinyoshiaki May 17, 2021
fda462f
add test
shinyoshiaki May 17, 2021
c4deaba
add test
shinyoshiaki May 17, 2021
bf8560f
build
shinyoshiaki May 17, 2021
73ee45d
v0.0.2
shinyoshiaki May 17, 2021
6a2f669
chore
shinyoshiaki May 17, 2021
a252d96
update doc
shinyoshiaki May 17, 2021
28598ae
improve type
shinyoshiaki May 17, 2021
2f1d9a9
improve type
shinyoshiaki May 17, 2021
63f42c0
build
shinyoshiaki May 17, 2021
79ba306
v0.0.3
shinyoshiaki May 17, 2021
7404584
update werift
shinyoshiaki May 19, 2021
b51c4fd
v0.0.4
shinyoshiaki May 19, 2021
1788b66
Merge branch 'develop' into main
shinyoshiaki May 19, 2021
bc80bb1
Update README.md
shinyoshiaki May 19, 2021
9253e6d
Update README.md
shinyoshiaki May 19, 2021
132f358
fix license
shinyoshiaki May 19, 2021
04541da
Update README.md
shinyoshiaki May 19, 2021
ed5d95f
Update README.md
shinyoshiaki May 19, 2021
7ae16f9
wip
shinyoshiaki May 19, 2021
72242b0
Update README.md
shinyoshiaki May 19, 2021
40c28a4
FIX script
shinyoshiaki May 20, 2021
702402f
add pli log
shinyoshiaki May 21, 2021
cc52edf
build
shinyoshiaki May 21, 2021
33f8c9c
v0.0.5
shinyoshiaki May 21, 2021
477df1d
fix type
shinyoshiaki May 21, 2021
cd60c42
v0.0.6
shinyoshiaki May 21, 2021
00a35e1
build
shinyoshiaki Jun 1, 2021
5a6baf9
Merge branch 'develop' into main
shinyoshiaki Jun 1, 2021
c1d457c
merge
shinyoshiaki Jun 1, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/node_modules/
node_modules/
/coverage/

# Vim temporal files.
Expand All @@ -7,6 +7,6 @@

# Mac Stuff.
.DS_Store

# Vistual Studio Code stuff.
/.vscode/
example/
yarn.lock
package-lock.json
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "client-node-media",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/ts-node-dev/lib/bin.js",
"protocol": "inspector",
"args": ["${workspaceRoot}/example/client-node/src/media.ts"],
"env": { "DEBUG": "werift*" },
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "server",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/ts-node-dev/lib/bin.js",
"protocol": "inspector",
"args": ["${workspaceRoot}/example/server/src/main.ts"],
"env": { "DEBUG": "*" },
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
67 changes: 67 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"cSpell.words": [
"TWCC",
"ack",
"acked",
"cwnd",
"dcep",
"dtls",
"examples",
"extmap",
"files",
"hdrext",
"howdee",
"icet",
"ipaddress",
"kwargs",
"length",
"max",
"mediachannel",
"milli",
"msid",
"node",
"nodertc",
"offer",
"out",
"parse",
"pranswer",
"prflx",
"raddr",
"reconfig",
"recvonly",
"reset",
"rport",
"rtc",
"rttvar",
"rwnd",
"sctp",
"sendonly",
"sendrecv",
"srflx",
"srtcp",
"srtt",
"ssthresh",
"struct",
"tcptype",
"test",
"transport",
"ts",
"ts node files examples mediachannel sendrecv offer",
"ufrag",
"uint",
"userdata",
"webrtc",
"werift",
"wrtct"
],
"liveServer.settings.port": 5501,
"typescript.tsdk": "node_modules/typescript/lib",
"python.formatting.provider": "black",
"eslint.format.enable": true,
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ISC License

Copyright © 2015, Iñaki Baz Castillo <[email protected]>
Copyright (c) 2020 shinyoshiaki

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
Expand Down
Loading