commit a159737b38a6149a74db013aa5830a5d56291059 Author: Leon van Kammen Date: Mon Dec 11 17:00:05 2023 +0100 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a85011 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +2023-12-11/*-leon.mp3 diff --git a/2023-12-11/2023-12-11 10-25-04-leon.mp4 b/2023-12-11/2023-12-11 10-25-04-leon.mp4 new file mode 100644 index 0000000..9834f39 Binary files /dev/null and b/2023-12-11/2023-12-11 10-25-04-leon.mp4 differ diff --git a/2023-12-11/jitsichat.txt b/2023-12-11/jitsichat.txt new file mode 100644 index 0000000..d9ba02a --- /dev/null +++ b/2023-12-11/jitsichat.txt @@ -0,0 +1,53 @@ +Update: can we postpone the friday-call to monday? It turned my wife's +sister has her wedding (and I completely forgot while talking to you) + +> Clearly though, between the vocabulary and complexity it, sadly iMHO, +didn't "blow up". It's quite abstract yet I believe they are the only true +"metaverse" implementation. + +The direction is indeed cool. +I guess Activitypub is nice for slow realtime comms (which is often good +enough), I guess they used NAF for spatial syncing. +Matrix protocol seems to allow for all of that in one (thirdroom e.g.) +which is pretty impressive. +I guess in both cases (human) bandwidth is hard to push these things +forward. +Sortof the reason why I kept the scope of +https://xrfragments.org + very +small. + +I've added one thing to the agenda: + +next meeting: +- how do we communicate efficiently with a trace +- selfhosted repo (forgejo/gitea e.g.) + GH/GL locked mirror-repo's? +- how meta do we want to go and use xrsh itself to collaborate +- accessibility services/lab NLnet +- shelltype-dropdown in XR terminal + +Why? In order for it to be useful for various kinds of people/accessibility. +How? include a dropdown to switch between "linux", "huggingface/GPT4ALL", +"MUSH" e.g. +Especially the MUSH-example might be THE textual escape-hatch for people +with screenreaders to access XR. +Jens (of Interpeer) mentioned to me that these MUD's already solved so much +accessibility issues. +I totally forgot about that...but they are also a SHELL. +Perhaps you can read this article before next meeting: +https://www.howtogeek.com/661428/text-based-vr-explore-the-pioneering-world-of-mushes + + +Imagine sending the terminal-text to a huggingface MeshGPT-model, [...] +me says:* upload own audio to media-repo +me says:* github repo as funnel for selfhosted +me says:login-via-github +me says:ayllu +me says:fossil/gitea/forgejo +me says:nginx-proxy-manager +me says: +https://github.com/facundoolano/rpg-cli + +me says: +https://github.com/coderofsalvation/xrsh + diff --git a/README.md b/README.md new file mode 100644 index 0000000..029b8b3 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +place for media/recording related files (to embed/transcribe etc) + +# generate audio from mp4 files + +To save space in the repo, just run this after cloning: + +``` +$ find $(pwd) -type f -iname '*.mp4' | while read mp4; do ffmpeg -i "$mp4" "$mp4.mp3"; done +```