CARVIEW |
Select Language
HTTP/2 200
date: Mon, 13 Oct 2025 10:08:19 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=f13ae0581502784f6590572422a3a792c8c91965d27dd135bdf5da6a0b45e7e4a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22wjDwQHaCUbO59_zOxJedB4nYM_IxdRYw%22%3B%7D; HttpOnly; Path=/
cf-ray: 98de08f4fc54c169-BLR
VIDEOS-MEREGE.pyw - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import tkinter as tk
- from tkinter import filedialog, messagebox
- import subprocess
- import os
- class VideoMergerApp:
- def __init__(self, root):
- self.root = root
- self.root.title("Najeeb Video Merger with FFMPEG")
- self.root.geometry("340x160")
- self.root.configure(bg="#4a4a4a")
- self.video_files = []
- self.label = tk.Label(root, text="Select video files to merge:")
- self.label.pack(pady=10)
- self.select_button = tk.Button(root, text="Select Files", command=self.select_files)
- self.select_button.pack(pady=5)
- self.merge_button = tk.Button(root, text="Merge Videos", command=self.merge_videos, state=tk.DISABLED)
- self.merge_button.pack(pady=5)
- self.status_label = tk.Label(root, text="")
- self.status_label.pack(pady=10)
- def select_files(self):
- self.video_files = filedialog.askopenfilenames(title="Select Video Files", filetypes=[("Video Files", "*.mp4 *.mkv *.avi")])
- if self.video_files:
- self.status_label.config(text=f"{len(self.video_files)} files selected.")
- self.merge_button.config(state=tk.NORMAL)
- else:
- self.status_label.config(text="No files selected.")
- self.merge_button.config(state=tk.DISABLED)
- def merge_videos(self):
- output_file = filedialog.asksaveasfilename(defaultextension=".mp4", filetypes=[("MP4 files", "*.mp4")])
- if not output_file:
- return
- temp_file = "temp_list.txt"
- with open(temp_file, "w") as f:
- for file in self.video_files:
- f.write(f"file '{file}'\n")
- ffmpeg_command = f"ffmpeg -f concat -safe 0 -i {temp_file} -c copy {output_file}"
- try:
- subprocess.run(ffmpeg_command, check=True, shell=True)
- self.status_label.config(text=f"Videos merged successfully into {output_file}")
- except subprocess.CalledProcessError:
- self.status_label.config(text="Error occurred while merging videos.")
- finally:
- os.remove(temp_file)
- self.merge_button.config(state=tk.DISABLED)
- if __name__ == "__main__":
- root = tk.Tk()
- app = VideoMergerApp(root)
- root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
-
π Swapzone +37% glitch β 5
JavaScript | 4 sec ago | 0.25 KB
-
π₯ Exchange profit method
JavaScript | 5 sec ago | 0.24 KB
-
β
β Make huge profits on trading ββ T
JavaScript | 13 sec ago | 0.25 KB
-
π MAKE $2500 IN 15 MIN β
Working
JavaScript | 14 sec ago | 0.24 KB
-
β
Marketplace Glitch β
Working NEVER SEEN BE...
JavaScript | 22 sec ago | 0.25 KB
-
β‘ Crypto Swap Glitch β
Working β‘
JavaScript | 24 sec ago | 0.24 KB
-
ββ
Exploit 2500$ in 15 Minutesβββ H
JavaScript | 29 sec ago | 0.25 KB
-
π EASY MONEY GUIDE β
Working R
JavaScript | 37 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand