Spaces:
Sleeping
Sleeping
File size: 4,450 Bytes
cd245d5 90bef38 8d5fabf cd245d5 7df9b81 118cd25 cd245d5 b2cad31 cd245d5 8d5fabf cd245d5 f006a50 6f17888 cd245d5 f006a50 d996989 6f17888 f006a50 b9c5fcd f006a50 cd245d5 8d5fabf 3fd88eb cd245d5 7df9b81 3fd88eb 7df9b81 3fd88eb 7df9b81 3fd88eb 7df9b81 3fd88eb 7df9b81 3fd88eb 7df9b81 3fd88eb 7df9b81 3fd88eb 7df9b81 3fd88eb 7df9b81 3fd88eb 8d5fabf cd245d5 8d5fabf cd245d5 f006a50 4e37056 f006a50 a084b90 cd245d5 f006a50 8d5fabf f006a50 7df9b81 f006a50 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | # import part
import streamlit as st
from transformers import pipeline
import os
import numpy as np
import io
# function part
# img2text
def img2text(image_path):
image_to_text = pipeline("image-to-text", model="sooh-j/blip-image-captioning-base")
text = image_to_text(image_path)[0]["generated_text"]
return text
# text2story
def text2story(text):
# Using a smaller text generation model
generator = pipeline("text-generation", model="TinyLlama/TinyLlama-1.1B-Chat-v1.0")
# Create a prompt for the story generation
prompt = f"Write a fun children's story based on this: {text}. Once upon a time, "
# Generate the story
story_result = generator(
prompt,
max_length=150,
num_return_sequences=1,
temperature=0.7,
top_k=50,
top_p=0.95,
do_sample=True
)
# Extract the generated text
story_text = story_result[0]['generated_text']
story_text = story_text.replace(prompt, "Once upon a time, ")
# Make sure the story is at least 100 words
words = story_text.split()
if len(words) > 100:
# Simply truncate to 100 words
story_text = " ".join(words[:100])
return story_text
# text2audio - REVISED to use a simpler approach without scipy
def text2audio(story_text):
try:
# Use the facebook/mms-tts-eng model with fewer features
synthesizer = pipeline("text-to-speech", model="facebook/mms-tts-eng")
# For simplicity, we'll limit the text length to avoid timeouts
# If text is too long, truncate it to a reasonable length (500 chars ~ 100 words)
max_length = 500
if len(story_text) > max_length:
last_period = story_text[:max_length].rfind('.')
if last_period > 0:
story_text = story_text[:last_period + 1]
else:
story_text = story_text[:max_length]
# Generate speech
speech = synthesizer(story_text)
# Save the audio to a file instead of using in-memory processing
# This avoids needing scipy
temp_audio_path = "temp_audio.wav"
# Convert numpy array to bytes and save
with open(temp_audio_path, "wb") as f:
# Assuming the audio is in the right format already
np.save(f, speech["audio"])
# Read the file back
with open(temp_audio_path, "rb") as f:
audio_data = f.read()
# Clean up
try:
os.remove(temp_audio_path)
except:
pass
return {
"audio": audio_data,
"sampling_rate": speech["sampling_rate"]
}
except Exception as e:
st.error(f"Error generating audio: {str(e)}")
# No fallback - just return None
return None
# Function to save temporary image file
def save_uploaded_image(uploaded_file):
if not os.path.exists("temp"):
os.makedirs("temp")
image_path = os.path.join("temp", uploaded_file.name)
with open(image_path, "wb") as f:
f.write(uploaded_file.getvalue())
return image_path
# main part
st.set_page_config(page_title="Your Image to Audio Story", page_icon="🦜")
st.header("Turn Your Image to Audio Story")
uploaded_file = st.file_uploader("Select an Image...")
if uploaded_file is not None:
# Display the uploaded image
st.image(uploaded_file, caption="Uploaded Image", use_container_width=True)
# Save the image temporarily
image_path = save_uploaded_image(uploaded_file)
# Stage 1: Image to Text
st.text('Processing img2text...')
caption = img2text(image_path)
st.write(caption)
# Stage 2: Text to Story
st.text('Generating a story...')
story = text2story(caption)
st.write(story)
# Stage 3: Story to Audio data
st.text('Generating audio data...')
audio_data = text2audio(story)
# Play button
if st.button("Play Audio"):
if audio_data:
st.audio(
audio_data["audio"],
format="audio/wav",
start_time=0,
sample_rate=audio_data["sampling_rate"]
)
else:
st.error("Failed to generate audio. Please try again.")
# Clean up the temporary file
try:
os.remove(image_path)
except:
pass |