Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/usaame100/part1
https://github.com/usaame100/part1
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/usaame100/part1
- Owner: Usaame100
- Created: 2024-11-10T07:58:23.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-10T10:33:39.000Z (2 months ago)
- Last Synced: 2024-11-10T11:26:30.534Z (2 months ago)
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Kaamiro Fur
Fur Kaamiro
Fur Kaamiro
function furKaamiro() {
// Hubi in browserka taageerayo Media Devices API
if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
navigator.mediaDevices.getUserMedia({ video: true })
.then(function (stream) {
let video = document.getElementById('kaamiro');
video.srcObject = stream;
video.play();
})
.catch(function (err) {
alert("Kaamiro waa la heli waayey: " + err.message);
});
} else {
alert("Browser-kaagu ma taageerayo kaamiro furis!");
}
}