File size: 14,094 Bytes
4ddead7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391

import gradio as gr
import json
import os
from datetime import datetime
import tempfile
import io
from gtts import gTTS
import pytesseract
from PIL import Image
import zipfile

# Global state for projects
PROJECTS_FILE = "projects.json"
current_project_id = None

def load_projects():
    """Load projects from JSON file"""
    if os.path.exists(PROJECTS_FILE):
        with open(PROJECTS_FILE, 'r') as f:
            return json.load(f)
    return {
        "projects": {
            "1": {
                "id": "1",
                "name": "Sample Script",
                "content": "Welcome to ScriptVoice! This is your first script. Start editing to create amazing voice content.",
                "notes": "This is a sample note for your script.",
                "created_at": datetime.now().isoformat(),
                "word_count": 0
            }
        },
        "settings": {
            "dyslexic_mode": False,
            "voice_speed": 1.0,
            "voice_volume": 1.0
        }
    }

def save_projects(data):
    """Save projects to JSON file"""
    with open(PROJECTS_FILE, 'w') as f:
        json.dump(data, f, indent=2)

def get_word_count(text):
    """Count words in text"""
    if not text:
        return 0
    return len(text.split())

def update_word_count(text):
    """Update word count display"""
    count = get_word_count(text)
    return f"**Word Count:** {count}"

def create_new_project(name):
    """Create a new project"""
    if not name.strip():
        return "Please enter a project name", None
    
    data = load_projects()
    new_id = str(len(data["projects"]) + 1)
    
    data["projects"][new_id] = {
        "id": new_id,
        "name": name.strip(),
        "content": "",
        "notes": "",
        "created_at": datetime.now().isoformat(),
        "word_count": 0
    }
    
    save_projects(data)
    
    # Return updated project choices and select the new project
    choices = [(proj["name"], proj_id) for proj_id, proj in data["projects"].items()]
    return f"Project '{name}' created successfully!", gr.update(choices=choices, value=new_id)

def load_project(project_id):
    """Load a specific project"""
    if not project_id:
        return "", "", "**Word Count:** 0"
    
    global current_project_id
    current_project_id = project_id
    
    data = load_projects()
    if project_id in data["projects"]:
        project = data["projects"][project_id]
        word_count = get_word_count(project["content"])
        return project["content"], project["notes"], f"**Word Count:** {word_count}"
    
    return "", "", "**Word Count:** 0"

def save_script_content(project_id, content, notes):
    """Save script content and notes"""
    if not project_id:
        return "No project selected"
    
    data = load_projects()
    if project_id in data["projects"]:
        data["projects"][project_id]["content"] = content
        data["projects"][project_id]["notes"] = notes
        data["projects"][project_id]["word_count"] = get_word_count(content)
        save_projects(data)
        return "βœ… Saved successfully"
    
    return "❌ Error saving"

def generate_tts(text, speed=1.0):
    """Generate TTS audio from text"""
    if not text.strip():
        return None, "Please enter some text to convert to speech"
    
    try:
        # Create a temporary file for the audio
        tts = gTTS(text=text, lang='en', slow=(speed < 1.0))
        
        # Use a temporary file
        with tempfile.NamedTemporaryFile(delete=False, suffix='.mp3') as tmp_file:
            tts.save(tmp_file.name)
            return tmp_file.name, "βœ… Audio generated successfully"
    
    except Exception as e:
        return None, f"❌ Error generating audio: {str(e)}"

def extract_text_from_image(image):
    """Extract text from uploaded image using OCR"""
    if image is None:
        return "", "Please upload an image"
    
    try:
        # Use pytesseract to extract text
        text = pytesseract.image_to_string(Image.open(image))
        if text.strip():
            return text.strip(), "βœ… Text extracted successfully"
        else:
            return "", "No text found in the image"
    
    except Exception as e:
        return "", f"❌ Error extracting text: {str(e)}"

def enhance_script_placeholder(text, enhancement_type):
    """Placeholder for AI script enhancement"""
    enhancements = {
        "dramatic": f"[DRAMATIC VERSION]\n{text}\n\n(Note: AI enhancement feature coming soon!)",
        "romantic": f"[ROMANTIC VERSION]\n{text}\n\n(Note: AI enhancement feature coming soon!)",
        "professional": f"[PROFESSIONAL VERSION]\n{text}\n\n(Note: AI enhancement feature coming soon!)",
        "casual": f"[CASUAL VERSION]\n{text}\n\n(Note: AI enhancement feature coming soon!)"
    }
    
    return enhancements.get(enhancement_type, text), "βœ… Enhancement applied (demo mode)"

def export_project(project_id, export_type):
    """Export project content"""
    if not project_id:
        return None, "No project selected"
    
    data = load_projects()
    if project_id not in data["projects"]:
        return None, "Project not found"
    
    project = data["projects"][project_id]
    
    if export_type == "text":
        # Create text file
        content = f"Project: {project['name']}\n"
        content += f"Created: {project['created_at']}\n"
        content += f"Word Count: {project['word_count']}\n\n"
        content += "SCRIPT:\n" + "="*50 + "\n"
        content += project['content'] + "\n\n"
        content += "NOTES:\n" + "="*50 + "\n"
        content += project['notes']
        
        with tempfile.NamedTemporaryFile(mode='w', delete=False, suffix='.txt', encoding='utf-8') as tmp_file:
            tmp_file.write(content)
            return tmp_file.name, "βœ… Text file exported"
    
    elif export_type == "audio":
        # Generate TTS audio
        if not project['content'].strip():
            return None, "No content to convert to audio"
        
        try:
            tts = gTTS(text=project['content'], lang='en')
            with tempfile.NamedTemporaryFile(delete=False, suffix='.mp3') as tmp_file:
                tts.save(tmp_file.name)
                return tmp_file.name, "βœ… Audio file exported"
        except Exception as e:
            return None, f"❌ Error generating audio: {str(e)}"
    
    return None, "Invalid export type"

# Initialize the Gradio interface
def create_interface():
    """Create the main Gradio interface"""
    
    # Load initial projects
    data = load_projects()
    project_choices = [(proj["name"], proj_id) for proj_id, proj in data["projects"].items()]
    
    with gr.Blocks(title="ScriptVoice - TTS Script Editor", theme=gr.themes.Soft()) as app:
        
        # Header
        gr.HTML("""
        <div style="text-align: center; padding: 20px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 10px; margin-bottom: 20px;">
            <h1 style="margin: 0; font-size: 2.5em;">
                <span style="color: #ff6b6b;">Script</span><span style="color: #ffd93d;">Voice</span>
            </h1>
            <p style="margin: 10px 0 0 0; font-size: 1.2em;">AI-Powered TTS Script Editor</p>
        </div>
        """)
        
        with gr.Row():
            # Left Sidebar
            with gr.Column(scale=1, min_width=300):
                gr.Markdown("### πŸ“ Projects")
                
                # New Project Section
                with gr.Group():
                    new_project_name = gr.Textbox(label="New Project Name", placeholder="Enter project name...")
                    create_btn = gr.Button("βž• Create Project", variant="primary")
                    create_status = gr.Textbox(label="Status", interactive=False, visible=False)
                
                # Project Selection
                project_dropdown = gr.Dropdown(
                    choices=project_choices,
                    label="Select Project",
                    value=list(data["projects"].keys())[0] if data["projects"] else None
                )
                
                # Notes Section
                gr.Markdown("### πŸ“ Notes")
                notes_textbox = gr.Textbox(
                    label="Project Notes",
                    placeholder="Add your notes here...",
                    lines=5,
                    max_lines=10
                )
                
                # Settings Section
                gr.Markdown("### βš™οΈ Settings")
                with gr.Group():
                    dyslexic_mode = gr.Checkbox(label="Dyslexic-friendly font", value=False)
                    voice_speed = gr.Slider(0.5, 2.0, value=1.0, step=0.1, label="Voice Speed")
                    voice_volume = gr.Slider(0.1, 1.0, value=1.0, step=0.1, label="Voice Volume")
            
            # Main Editor Panel
            with gr.Column(scale=2):
                # Word Count Display
                word_count_display = gr.Markdown("**Word Count:** 0")
                
                # Script Editor
                script_textbox = gr.Textbox(
                    label="Script Editor",
                    placeholder="Start writing your script here...",
                    lines=15,
                    max_lines=25
                )
                
                # Control Buttons Row
                with gr.Row():
                    save_btn = gr.Button("πŸ’Ύ Save", variant="secondary")
                    tts_btn = gr.Button("πŸ”Š Play TTS", variant="primary")
                    save_status = gr.Textbox(label="Save Status", interactive=False, visible=False)
                
                # TTS Audio Output
                audio_output = gr.Audio(label="Generated Audio")
                tts_status = gr.Textbox(label="TTS Status", interactive=False, visible=False)
                
                # OCR Section
                with gr.Group():
                    gr.Markdown("### πŸ“· Extract Text from Image")
                    with gr.Row():
                        image_input = gr.Image(type="filepath", label="Upload Image")
                        ocr_btn = gr.Button("Extract Text")
                    ocr_status = gr.Textbox(label="OCR Status", interactive=False, visible=False)
                
                # AI Enhancement Section
                with gr.Group():
                    gr.Markdown("### πŸ€– AI Script Enhancement")
                    with gr.Row():
                        enhancement_type = gr.Dropdown(
                            choices=["dramatic", "romantic", "professional", "casual"],
                            label="Enhancement Style",
                            value="dramatic"
                        )
                        enhance_btn = gr.Button("✨ Enhance Script")
                    enhance_status = gr.Textbox(label="Enhancement Status", interactive=False, visible=False)
                
                # Export Section
                with gr.Group():
                    gr.Markdown("### πŸ“€ Export")
                    with gr.Row():
                        export_type = gr.Dropdown(
                            choices=["text", "audio"],
                            label="Export Type",
                            value="text"
                        )
                        export_btn = gr.Button("πŸ“₯ Export")
                    export_file = gr.File(label="Download")
                    export_status = gr.Textbox(label="Export Status", interactive=False, visible=False)
        
        # Event Handlers
        
        # Create new project
        create_btn.click(
            fn=create_new_project,
            inputs=[new_project_name],
            outputs=[create_status, project_dropdown]
        ).then(
            lambda: ("", gr.update(visible=True)),
            outputs=[new_project_name, create_status]
        )
        
        # Load project when selected
        project_dropdown.change(
            fn=load_project,
            inputs=[project_dropdown],
            outputs=[script_textbox, notes_textbox, word_count_display]
        )
        
        # Update word count as user types
        script_textbox.change(
            fn=update_word_count,
            inputs=[script_textbox],
            outputs=[word_count_display]
        )
        
        # Save script content
        save_btn.click(
            fn=save_script_content,
            inputs=[project_dropdown, script_textbox, notes_textbox],
            outputs=[save_status]
        ).then(
            lambda: gr.update(visible=True),
            outputs=[save_status]
        )
        
        # Generate TTS
        tts_btn.click(
            fn=generate_tts,
            inputs=[script_textbox, voice_speed],
            outputs=[audio_output, tts_status]
        ).then(
            lambda: gr.update(visible=True),
            outputs=[tts_status]
        )
        
        # OCR text extraction
        ocr_btn.click(
            fn=extract_text_from_image,
            inputs=[image_input],
            outputs=[script_textbox, ocr_status]
        ).then(
            lambda: gr.update(visible=True),
            outputs=[ocr_status]
        )
        
        # AI Enhancement
        enhance_btn.click(
            fn=enhance_script_placeholder,
            inputs=[script_textbox, enhancement_type],
            outputs=[script_textbox, enhance_status]
        ).then(
            lambda: gr.update(visible=True),
            outputs=[enhance_status]
        )
        
        # Export functionality
        export_btn.click(
            fn=export_project,
            inputs=[project_dropdown, export_type],
            outputs=[export_file, export_status]
        ).then(
            lambda: gr.update(visible=True),
            outputs=[export_status]
        )
    
    return app

if __name__ == "__main__":
    # Create and launch the app
    app = create_interface()
    app.launch(
        server_name="0.0.0.0",
        server_port=7860,
        share=True,
        show_error=True
    )