File size: 1,406 Bytes
c5d3103
3fefa68
 
5e251ab
3fefa68
 
 
 
 
c5d3103
3fefa68
 
 
 
 
b267797
 
 
 
 
 
3fefa68
 
 
 
 
 
a0f1951
 
c5d3103
 
 
 
 
 
 
 
 
 
 
 
 
c78ca01
c5d3103
a0f1951
3fefa68
a0f1951
 
3fefa68
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
import './App.css';
import React, { useState } from 'react';
import axios from 'axios';
// import FileList from './FileList/FileList';

const App = () => {
  const [generatedCaption, setGeneratedCaption] = useState('');
  const [audioUrl, setAudioUrl] = useState('');

  const handleImageGenerate = async (event) => {
    const file = event.target.files[0];
    const formData = new FormData();
    formData.append('image', file);

    try {
      const response = await axios.post('http://5000/upload', formData, {
        headers: {
          'Content-Type': 'multipart/form-data',
        },
      });
      
      setGeneratedCaption(response.data.generated_caption);
      setAudioUrl(response.data.audio_url);
    } catch (error) {
      console.error('Error uploading image:', error);
    }
  };

  return (
    <>
      <div className="App">
        <p className="title">Image Captioning</p>
        <div className="file-card">
          <div className="file-inputs">
            <label htmlFor="fileInput">
              <input type="file" id="fileInput" onChange={handleImageGenerate} accept="image/jpeg, image/png" />
              <span>Upload</span>
            </label>
            {generatedCaption && <p>Generated Caption: {generatedCaption}</p>}
            {audioUrl && <audio controls src={audioUrl} />}
          </div>
        </div>
      </div>
    </>
  );
};

export default App;