File size: 10,615 Bytes
b080b2f
6668dc9
 
b080b2f
6668dc9
 
b080b2f
 
 
6668dc9
 
 
108e243
6668dc9
 
 
 
 
 
 
108e243
 
6668dc9
108e243
 
 
 
 
 
 
 
 
 
 
 
 
 
6668dc9
108e243
 
6668dc9
 
b080b2f
6668dc9
b080b2f
 
3f8f4bc
6668dc9
3f8f4bc
 
16a94a1
b080b2f
6668dc9
 
 
 
 
 
 
 
 
 
 
 
 
 
108e243
6668dc9
108e243
6668dc9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108e243
6668dc9
 
 
 
 
 
 
 
 
108e243
6668dc9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108e243
 
 
 
 
 
 
 
 
 
6668dc9
 
 
 
b080b2f
 
04bcc37
6668dc9
 
b080b2f
 
 
6668dc9
 
b080b2f
 
 
 
 
 
6668dc9
 
b080b2f
 
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
import gradio as gr
import torch
from moviepy.editor import *
from PIL import Image, ImageDraw, ImageFont
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
from min_dalle import MinDalle
from gtts import gTTS
from pydub import AudioSegment
import nltk
import textwrap
import os
import glob
import subprocess

# Ensure 'punkt' is downloaded for nltk
try:
    nltk.data.find('tokenizers/punkt')
except LookupError:
    nltk.download('punkt')

# Function to check and install FFmpeg if not found
def ensure_ffmpeg_installed():
    try:
        # Check if FFmpeg is installed by running ffmpeg -version
        subprocess.run(['ffmpeg', '-version'], check=True, capture_output=True, text=True)
        print("FFmpeg is already installed.")
    except (subprocess.CalledProcessError, FileNotFoundError):
        print("FFmpeg not found. Attempting to install...")
        try:
            # Install FFmpeg using the system package manager (apt for Debian/Ubuntu)
            subprocess.run(['apt', 'update'], check=True)
            subprocess.run(['apt', 'install', '-y', 'ffmpeg'], check=True)
            print("FFmpeg installed successfully using apt.")
        except subprocess.CalledProcessError as e:
            print(f"Failed to install FFmpeg using apt: {e}")
            print("Please install FFmpeg manually and ensure it is in your system's PATH.")
            raise

# Ensure FFmpeg is installed before proceeding
ensure_ffmpeg_installed()

description = " Video Story Generator with Audio \n PS:  Generation of video by using Artificial Intelligence by dalle-mini and distilbart and gtss "
title = "Video Story Generator with Audio by using dalle-mini and distilbart and gtss  "

tokenizer = AutoTokenizer.from_pretrained("sshleifer/distilbart-cnn-12-6")
model = AutoModelForSeq2SeqLM.from_pretrained("sshleifer/distilbart-cnn-12-6")
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
model.to(device)
print(device)


def get_output_video(text):
    inputs = tokenizer(text,
                       max_length=1024,
                       truncation=True,
                       return_tensors="pt").to(device)
    summary_ids = model.generate(inputs["input_ids"])
    summary = tokenizer.batch_decode(summary_ids,
                                     skip_special_tokens=True,
                                     clean_up_tokenization_spaces=False)
    plot = list(summary[0].split('.'))

    '''
    The required models will be downloaded to models_root if they are not already there.
    Set the dtype to torch.float16 to save GPU memory.
    If you have an Ampere architecture GPU you can use torch.bfloat16.
        Set the device to either "cuda" or "cpu". Once everything has finished initializing,
    float32 is faster than float16 but uses more GPU memory.
        '''

    def generate_image(
            is_mega: bool,
            text: str,
            seed: int,
            grid_size: int,
            top_k: int,
            image_path: str,
            models_root: str,
            fp16: bool,
    ):
        model = MinDalle(
            is_mega=is_mega,
            models_root=models_root,
            is_reusable=True,
            is_verbose=True,
            dtype=torch.float16 if fp16 else torch.float32,
            device=device
        )

        image = model.generate_image(
            text,
            seed,
            grid_size,
            top_k=top_k,
            is_verbose=True
        )
        return image

    generated_images = []
    for senten in plot[:-1]:
        image = generate_image(
            is_mega=True,
            text=senten,
            seed=1,
            grid_size=1,  # param {type:"integer"}
            top_k=256,  # param {type:"integer"}
            image_path='generated',
            models_root='pretrained',
            fp16=True, )
        generated_images.append(image)

    # Step 4- Creation of the subtitles
    sentences = plot[:-1]
    num_sentences = len(sentences)
    assert len(generated_images) == len(sentences), print('Something is wrong')
    # We can generate our list of subtitles
    from nltk import tokenize
    c = 0
    sub_names = []
    for k in range(len(generated_images)):
        subtitles = tokenize.sent_tokenize(sentences[k])
        sub_names.append(subtitles)

    # Step 5- Adding Subtitles to the Images
    def draw_multiple_line_text(image, text, font, text_color, text_start_height):
        draw = ImageDraw.Draw(image)
        image_width, image_height = image.size
        y_text = text_start_height
        lines = textwrap.wrap(text, width=40)
        for line in lines:
            line_width, line_height = font.getbbox(line)[2:4] # Use getbbox for better size calculation
            draw.text(((image_width - line_width) / 2, y_text),
                      line, font=font, fill=text_color)
            y_text += line_height

    def add_text_to_img(text1, image_input):
        '''
        Testing draw_multiple_line_text
        '''
        image = image_input
        fontsize = 20  # Increased font size
        path_font = "/usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf"
        if not os.path.exists(path_font):
          # Try alternative location on different systems
          path_font = "/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf"
          if not os.path.exists(path_font):
            print("Font file not found. Subtitles might not be rendered correctly.")
            path_font = None

        if path_font is not None:
            try:
                font = ImageFont.truetype(path_font, fontsize)
                text_color = (255, 255, 0)
                text_start_height = 200
                draw_multiple_line_text(image, text1, font, text_color, text_start_height)
            except Exception as e:
                print(f"Error loading or using font: {e}")
                
        return image

    generated_images_sub = []
    for k in range(len(generated_images)):
        imagenes = generated_images[k].copy()
        text_to_add = sub_names[k][0]
        result = add_text_to_img(text_to_add, imagenes)
        generated_images_sub.append(result)

    # Step  7 - Creation of audio
    c = 0
    mp3_names = []
    mp3_lengths = []
    for k in range(len(generated_images)):
        text_to_add = sub_names[k][0]
        print(text_to_add)
        f_name = 'audio_' + str(c) + '.mp3'
        mp3_names.append(f_name)
        # The text that you want to convert to audio
        mytext = text_to_add
        # Language in which you want to convert
        language = 'en'
        # Passing the text and language to the engine,
        # here we have marked slow=False. Which tells
        # the module that the converted audio should
        # have a high speed
        myobj = gTTS(text=mytext, lang=language, slow=False)
        # Saving the converted audio in a mp3 file named
        sound_file = f_name
        myobj.save(sound_file)
        audio = AudioSegment.from_file(sound_file, format="mp3")
        duration = len(audio) / 1000
        mp3_lengths.append(duration)
        print(duration)
        c += 1

    # Step 8 - Merge audio files
    cwd = os.getcwd().replace(chr(92), '/')
    export_path = 'result.mp3'
    silence = AudioSegment.silent(duration=500)
    full_audio = AudioSegment.empty()

    for n, mp3_file in enumerate(mp3_names):
        mp3_file = mp3_file.replace(chr(92), '/')
        print(n, mp3_file)
        # Load the current mp3 into `audio_segment`
        audio_segment = AudioSegment.from_mp3(mp3_file)
        # Just accumulate the new `audio_segment` + `silence`
        full_audio += audio_segment + silence
        print('Merging ', n)
    # The loop will exit once all files in the list have been used
    # Then export
    full_audio.export(export_path, format='mp3')
    print('\ndone!')

    # Step 9 - Creation of the video with adjusted times of the sound
    c = 0
    file_names = []
    for img in generated_images_sub:
        f_name = 'img_' + str(c) + '.jpg'
        file_names.append(f_name)
        img.save(f_name)
        c += 1
    print(file_names)

    clips = []
    d = 0
    for m in file_names:
        duration = mp3_lengths[d]
        print(d, duration)
        clips.append(ImageClip(m).set_duration(duration + 0.5))
        d += 1
    concat_clip = concatenate_videoclips(clips, method="compose")
    concat_clip.write_videofile("result_new.mp4", fps=24)

    # Step 10 - Merge Video + Audio
    movie_name = 'result_new.mp4'
    export_path = 'result.mp3'
    movie_final = 'result_final.mp4'

    def combine_audio(vidname, audname, outname, fps=24):
        import moviepy.editor as mpe
        my_clip = mpe.VideoFileClip(vidname)
        audio_background = mpe.AudioFileClip(audname)
        final_clip = my_clip.set_audio(audio_background)
        final_clip.write_videofile(outname, fps=fps)

    combine_audio(movie_name, export_path, movie_final)  # create a new file
    
    # Cleanup intermediate files
    for f in file_names:
        os.remove(f)
    for f in mp3_names:
        os.remove(f)
    os.remove("result_new.mp4")
    os.remove("result.mp3")


    return 'result_final.mp4'


text = 'Once, there was a girl called Laura who went to the supermarket to buy the ingredients to make a cake. Because today is her birthday and her friends come to her house and help her to prepare the cake.'
demo = gr.Blocks()
with demo:
    gr.Markdown("# Video Generator from stories with Artificial Intelligence")
    gr.Markdown(
        "A story can be input by user. The story is summarized using DistillBART model. Then, then it is generated the images by using Dalle-mini and created the subtitles and audio gtts. These are generated as a video.")
    with gr.Row():
        # Left column (inputs)
        with gr.Column():
            input_start_text = gr.Textbox(value=text,
                                          label="Type your story here, for now a sample story is added already!")
            with gr.Row():
                button_gen_video = gr.Button("Generate Video")
        # Right column (outputs)
        with gr.Column():
            output_interpolation = gr.Video(label="Generated Video")
    gr.Markdown("<h3>Future Works </h3>")
    gr.Markdown(
        "This program text-to-video AI software generating videos from any prompt! AI software to build an art gallery. The future version will use Dalle-2 For more info visit [ruslanmv.com](https://ruslanmv.com/) ")
    button_gen_video.click(fn=get_output_video, inputs=input_start_text, outputs=output_interpolation)
demo.launch(debug=False)