Skip to content

Commit

Permalink
Add audio
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-karlsson committed Apr 20, 2024
1 parent 86ec6b9 commit 63ef0d7
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 35 deletions.
37 changes: 34 additions & 3 deletions client/src/components/AudioOutput.jsx
@@ -1,7 +1,38 @@
import React from "react";
// In the AudioOutput component
import React, { useEffect, useRef } from "react";

function AudioOutput() {
return <></>;
function AudioOutput({ currentAudioBuffer }) {
const audioRef = useRef(null);

useEffect(() => {
if (currentAudioBuffer) {
console.log(
"Creating blob with ArrayBuffer of size:",
currentAudioBuffer.byteLength
);
const blob = new Blob([currentAudioBuffer], { type: "audio/mp3" });
const url = URL.createObjectURL(blob);
console.log("Blob URL:", url); // Check the generated URL
audioRef.current.src = url;
audioRef.current
.play()
.catch((err) => console.error("Error playing audio:", err));

return () => {
console.log("Revoking URL:", url);
URL.revokeObjectURL(url);
};
}
}, [currentAudioBuffer]);

return (
<audio
ref={audioRef}
controls
autoPlay
onLoadedData={() => console.log("Audio loaded")}
/>
);
}

export default AudioOutput;
15 changes: 12 additions & 3 deletions client/src/components/Contact.jsx
Expand Up @@ -3,7 +3,10 @@ import React from "react";
function Contact() {
return (
<div className="wrapper">
<div className="text-container" style={{ justifyContent: "center" }}>
<div
className="text-container"
style={{ justifyContent: "center" }}
>
<h4>
The project is an initiative by art & design
<br /> collective Nonhuman Nonsense developed in
Expand All @@ -18,11 +21,17 @@ function Contact() {
@nonhuman-nonsense
</a>
<br />
<a className="link" href="https://nonhuman-nonsense.com">
<a
className="link"
href="https://nonhuman-nonsense.com"
>
nonhuman-nonsense.com
</a>
<br />
<a className="link" href="mailto:hello@nonhuman-nonsense.com">
<a
className="link"
href="mailto:hello@nonhuman-nonsense.com"
>
hello@nonhuman-nonsense.com
</a>
</h4>
Expand Down
22 changes: 15 additions & 7 deletions client/src/components/Council.jsx
Expand Up @@ -17,6 +17,7 @@ function Council({ options }) {
const [activeOverlay, setActiveOverlay] = useState("");
const { width: screenWidth } = useWindowSize();
const [conversation, setConversation] = useState([]); // State to store conversation updates
const [audioBuffers, setAudioBuffers] = useState([]); // To store multiple ArrayBuffers
const socketRef = useRef(null); // Using useRef to persist socket instance

const foodsContainerStyle = {
Expand All @@ -33,26 +34,30 @@ function Council({ options }) {
useEffect(() => {
socketRef.current = io();

// Send initial data to start the conversation
let promptsAndOptions = {
options: {
...globalOptions,
humanName: humanName,
humanName,
raiseHandPrompt: false,
neverMindPrompt: false,
},
name: "New room",
topic: topic,
topic,
characters: foods,
};

socketRef.current.emit("start_conversation", promptsAndOptions);

// Listen for conversation updates
// Listen for conversation text updates
socketRef.current.on("conversation_update", (message) => {
setConversation((prev) => [...prev, message]); // Update conversation state
setConversation((prev) => [...prev, message]);
});

// Listen for audio updates
socketRef.current.on("audio_update", (audioData) => {
setAudioBuffers((prevBuffers) => [...prevBuffers, audioData.audio]);
});

// Cleanup on component unmount
return () => {
socketRef.current.disconnect();
};
Expand Down Expand Up @@ -108,7 +113,10 @@ function Council({ options }) {
className="text-container"
style={{ justifyContent: "end" }}
>
<Output conversation={conversation} />
<Output
conversation={conversation}
audioBuffers={audioBuffers}
/>
</div>
)}
<div style={foodsContainerStyle}>
Expand Down
49 changes: 27 additions & 22 deletions client/src/components/Output.jsx
Expand Up @@ -3,33 +3,17 @@ import TextOutput from "./TextOutput";
import AudioOutput from "./AudioOutput";
import ConversationControls from "./ConversationControls";

function Output({ conversation }) {
function Output({ conversation, audioBuffers }) {
const [currentMessageIndex, setCurrentMessageIndex] = useState(0);
const [currentSnippetIndex, setCurrentSnippetIndex] = useState(0);
const [currentMessageTextSnippet, setCurrentMessageTextSnippet] =
useState("");
const [isPaused, setIsPaused] = useState(false);

const calculateDisplayTime = (text) => Math.max(3, text.length * 0.05);

function handlePauseResume() {
setIsPaused(!isPaused); // Toggle pause state
}

function handleSkipForward() {
if (conversation.length > currentMessageIndex) {
const snippets =
conversation[currentMessageIndex].text.split(/(?<=\.\s)/);
if (currentSnippetIndex < snippets.length - 1) {
// Move to the next snippet within the same message
setCurrentSnippetIndex(currentSnippetIndex + 1);
} else if (currentMessageIndex < conversation.length - 1) {
// Move to the first snippet of the next message
setCurrentMessageIndex(currentMessageIndex + 1);
setCurrentSnippetIndex(0);
}
}
}
useEffect(() => {
console.log("Audio buffers length:", audioBuffers.length);
console.log("Current audio buffer index:", currentMessageIndex);
}, [audioBuffers, currentMessageIndex]);

useEffect(() => {
if (conversation.length > 0 && !isPaused) {
Expand All @@ -51,6 +35,27 @@ function Output({ conversation }) {
}
}, [currentMessageIndex, currentSnippetIndex, conversation, isPaused]); // Include isPaused in dependencies

const calculateDisplayTime = (text) => Math.max(3, text.length * 0.05);

function handlePauseResume() {
setIsPaused(!isPaused); // Toggle pause state
}

function handleSkipForward() {
if (conversation.length > currentMessageIndex) {
const snippets =
conversation[currentMessageIndex].text.split(/(?<=\.\s)/);
if (currentSnippetIndex < snippets.length - 1) {
// Move to the next snippet within the same message
setCurrentSnippetIndex(currentSnippetIndex + 1);
} else if (currentMessageIndex < conversation.length - 1) {
// Move to the first snippet of the next message
setCurrentMessageIndex(currentMessageIndex + 1);
setCurrentSnippetIndex(0);
}
}
}

return (
<div>
<h2>
Expand All @@ -60,7 +65,7 @@ function Output({ conversation }) {
: ""}
</h2>
<TextOutput currentMessageTextSnippet={currentMessageTextSnippet} />
<AudioOutput />
<AudioOutput currentAudioBuffer={audioBuffers[currentMessageIndex]} />
<ConversationControls
isPaused={isPaused}
onPauseResume={handlePauseResume}
Expand Down

0 comments on commit 63ef0d7

Please sign in to comment.