
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (63)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (5770)
-
How to buffer videojs so preload won't show ?
9 septembre 2015, par toyI’m building video cutting tool using videojs. In order to give the feedback to user right away instead of using ffmpeg to merge the video right away. I just swap the videos instead. However, during the swapping you would see the loading icon when the second video is being loaded. Is there any tricks that would tell videojs to load the video before so when the video plays it would just play right away.
http://jsfiddle.net/noppanit/odwqqoss/2/
Here’s my code
<div>
<video preload="auto" class="vjs-tech" src="http://www.w3schools.com/html/mov_bbb.mp4">
<source src="http://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</source></video>
</div>
<div>
<div>
<label>From</label>
<input type="text" class="start-time" />
</div>
<div>
<label>To</label>
<input type="text" class="stop-time" />
</div>
<div>
<input type="button" value="Select" />
</div>
</div>
<div>
<video preload="auto" class="vjs-tech" src="http://www.w3schools.com/html/mov_bbb.mp4">
<source src="http://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</source></video>
</div>
<div>
<div>
<label>From</label>
<input type="text" class="start-time-video1" />
</div>
<div>
<label>To</label>
<input type="text" class="stop-time-video1" />
</div>
<div>
<input type="button" value="Select" />
</div>
</div>
<div>
<input type="button" value="Cut!" />
</div>
<div></div>
(function ($) {
$('#cut-video').on('click', function () {
var video = videojs("example_video_1");
var startTime = $('.start-time');
var stopTime = $('.stop-time');
video.currentTime(startTime.val());
video.play();
video.on('timeupdate', function (e) {
if (video.currentTime() >= stopTime.val()) {
video.pause();
}
});
});
$('#cut-video1').on('click', function () {
var video = videojs("example_video_2");
var startTime = $('.start-time-video1');
var stopTime = $('.stop-time-video1');
video.currentTime(startTime.val());
video.play();
video.on('timeupdate', function (e) {
if (video.currentTime() >= stopTime.val()) {
video.pause();
}
});
});
$('#cut').on('click', function () {
var video = $('<video></video>');
video.attr('id', 'result1');
video.addClass('video-js vjs-default-skin');
video.attr('width', 300);
var source = $('<source></source>');
source.attr('src', 'http://www.w3schools.com/html/mov_bbb.mp4');
source.attr('type', 'video/mp4');
video.append(source);
$('#result').append(video);
var player = videojs("result1");
var startTime = $('.start-time');
var stopTime = $('.stop-time');
player.currentTime(startTime.val());
player.play();
player.on('timeupdate', function (e) {
if (player.currentTime() >= stopTime.val()) {
player.src({
"type": "video/mp4",
src: 'http://www.w3schools.com/html/mov_bbb.mp4'
});
var startTime1 = $('.start-time-video1');
var stopTime1 = $('.stop-time-video1');
player.currentTime(startTime1.val());
player.play();
player.on('timeupdate', function (e1) {
if (player.currentTime() >= stopTime1.val()) {
player.pause();
}
});
}
});
});
})(jQuery); -
Python buffered IO ending early streaming with multiple pipes
5 octobre 2022, par MalibuI'm trying to make a continuous livestream of videos downloaded via yt-dlp. I need to port this (working) bash command into Python.


(
 youtube-dl -v --buffer-size 16k https://youtube.com/watch?v=QiInzFHIDp4 -o - | ffmpeg -i - -f mpegts -c copy - ;
 youtube-dl -v --buffer-size 16k https://youtube.com/watch?v=QiInzFHIDp4 -o - | ffmpeg -i - -f mpegts -c copy - ;
) | ffmpeg -re -i - -c:v libx264 -f flv rtmp://127.0.0.1/live/H1P_x5WPF



My Python attempt is cutting off the last 2 seconds of each video. My suspicion is that although the first pipe, yt-dlp, has an empty stdout, there is still data travelling between the second and third pipe. I haven't been able to figure out a way to properly handle the data between those two pipes at the end of the video.


from subprocess import Popen, PIPE, DEVNULL

COPY_BUFSIZE = 65424

playlist = [
 {
 # 15 second video
 "url": "https://youtube.com/watch?v=QiInzFHIDp4"
 },
 {
 # 15 second video
 "url": "https://youtube.com/watch?v=QiInzFHIDp4"
 },
 {
 # 15 second video
 "url": "https://youtube.com/watch?v=QiInzFHIDp4"
 },
]

if __name__ == "__main__":
 stream_cmd = [
 "ffmpeg", "-loglevel", "error",
 "-hide_banner", "-re", "-i", "-",
 "-c:v", "libx264",
 "-f", "flv",
 "-b:v", "3000k", "-minrate", "3000k",
 "-maxrate", "3000k", "-bufsize", "3000k",
 "-r", "25", "-pix_fmt", "yuv420p",
 "rtmp://127.0.0.1/live/H1P_x5WPF"
 ]
 print(f'Stream command:\n"{" ".join(stream_cmd)}"')

 encoder_cmd = [
 "ffmpeg", "-re", "-i", "-", "-f", "mpegts",
 "-c", "copy", "-"
 ]
 print(f'Encoder command:\n"{" ".join(encoder_cmd)}"')

 stream_p = Popen(stream_cmd, stdin=PIPE, stderr=DEVNULL)

 for video in playlist:
 yt_dlp_cmd = [
 "yt-dlp", "-q",
 video["url"],
 "-o", "-"
 ]

 print("Now playing: " + video["url"])

 with Popen(yt_dlp_cmd, stdout=PIPE) as yt_dlp_p:
 with Popen(encoder_cmd, stdin=PIPE, stdout=PIPE, stderr=DEVNULL) as encoder_p:
 while True:
 yt_dlp_buf = yt_dlp_p.stdout.read(COPY_BUFSIZE)
 print("READ: yt_dlp")
 if not yt_dlp_buf:
 print("yt-dlp buffer empty")
 # Handle any data in 2nd/3rd pipes before breaking?
 break

 written = encoder_p.stdin.write(yt_dlp_buf)
 print("WRITE: encoder. Bytes: " + str(written))

 encoder_buf = encoder_p.stdout.read(COPY_BUFSIZE)
 # if not encoder_buf:
 # print("encoder_buf empty")
 # break
 print("READ: encoder")

 stream_bytes_written = stream_p.stdin.write(encoder_buf)
 print("WRITE: stream, Bytes: " + str(stream_bytes_written))



Running Python 3.6.9 on MacOS.


-
FFmpeg python doesn't merge
24 avril 2021, par MaLoLHDXI was making this youtube downloader GUI with Python : it asks for the URL, gives you a list with the possible quality settings and downloads the selected video file and the best audio file with youtube-dl. However, when I tell ffmpeg to merge the two separate downloaded files, it doesn't do anything and it doesn't say anything in the console either. Is there anything I'm missing ?


Here's the relevant part of the code (starts at line 153) :


#Adding input arguments for ffmpeg
 ffmpeg_video = ffmpeg.input(self.video_title)
 ffmpeg_audio = ffmpeg.input(self.audio_title)
 output_ffmpeg_title = './videos/' + self.youtube_title
 #Merging with ffmpeg
 out = ffmpeg.output(ffmpeg_video, ffmpeg_audio, output_ffmpeg_title, vcodec='copy', acodec='aac')
 out.run



Here's the full code :


import youtube_dl
import tkinter as tk
import operator
import ffmpeg
class GUI:
 def __init__(self):
 #Creating initial window
 self.window = tk.Tk()
 self.window.title('YTDL')
 self.window.geometry('300x70')
 
 self.urlbox = tk.Entry(self.window)
 self.urlbox.pack(padx=5,pady=5)
 #Creating download button, which will open the format selection window
 downbutton = tk.Button(self.window, text="Download", command= self.check_url)
 downbutton.pack(padx=5, pady=5)
 #Creating a variable to keep track of the point in the GUI options selection
 self.format_select_process = False
 
 self.window.mainloop()
 def check_url(self):
 #Saving selected URL to variable
 self.selected_url = self.urlbox.get()
 self.urlbox.delete(0, 'end')
 #If something was written in the URL box, try to go the next step
 if len(self.selected_url) != 0:
 self.get_formats(self.selected_url)
 else:
 print('URL box is empty!')
 def get_formats(self, x):
 with youtube_dl.YoutubeDL() as ydl:
 meta = ydl.extract_info(x, download=False)
 #Save formats from 'meta' to 'self.formats'
 self.formats = meta.get('formats', [meta])
 self.youtube_title = meta.get('title', [meta])
 #Creating two dictionaries for the list of format sizes and extensions
 self.f_list_size_dict = {}
 self.f_list_ext_dict = {}
 #Creating audio format list
 self.audio_format_list = []
 #For every format in self.formats, add its format, extension, fps and filesize to self.f_list
 for f in self.formats:
 self.f_list = '-' + f['format']+ ' -' + f['ext'] + ' -' + str(f['fps']) + ' ' + str(f['filesize'])
 if 'audio only' in f['format']:
 #Add an element to each dictonary whose name is the format ID and whose value is its filesize/extension
 self.f_list_size_dict[f['format'].split(' -')[0]] = f['filesize']
 self.f_list_ext_dict[f['format'].split(' -')[0]] = f['ext']
 #Add to the audio format list the current audio format ID
 self.audio_format_list.append(f['format'].split(' -')[0])
 print('Audio format list:')
 print(self.audio_format_list)
 print('Size list dict:')
 print(self.f_list_size_dict)
 print('Ext list size dict:')
 print(self.f_list_ext_dict)
 """
 #Making a new list which only contains the audio format IDs
 self.audio_format_list = str(self.f_list_size_dict.keys()).split('([')[1]
 self.audio_format_list = self.audio_format_list.split('])')[0]
 self.audio_format_list = self.audio_format_list.replace("'", "")
 self.audio_format_list = self.audio_format_list.split(', ')
 print('Cleaned up audio format list:')
 print(self.audio_format_list)
 """
 #Here the program starts looking for the best audio format
 #In the try block, the program gets the best audio format's ID from the size dict and extension from the ext dict
 #In the except block, the program gets the ID from the audio format list and the extension from the ext dict
 try:
 self.highest_audio = max(self.f_list_size_dict.items(), key=operator.itemgetter(1))[0]
 self.highest_audio_ext = self.f_list_ext_dict.get(self.highest_audio)
 print('Best audio format ID: ' + self.highest_audio)
 print('Best audio format extension: ' + self.highest_audio_ext)
 except:
 self.highest_audio = max(self.audio_format_list)
 self.highest_audio_ext = self.f_list_ext_dict.get(self.highest_audio)
 print(self.highest_audio)
 print(self.highest_audio_ext)
 #Going to next sted of the code, which renders the format choice window
 self.format_select()
 def format_select(self):
 self.window.withdraw()
 format_select_window = tk.Toplevel()
 format_select_window.attributes('-topmost', True)
 format_select_window.geometry("300x350")
 format_select_window_label = tk.Label(format_select_window, text="Select the video format")
 format_select_window_label.pack(padx=5, pady=5)
 format_select_window.protocol('WM_DELETE_WINDOW', lambda: exit())

 self.format_listbox = tk.Listbox(format_select_window, height=15, width=40, yscrollcommand=1)
 self.format_listbox.pack(padx=10, pady=10)
 for index, item in enumerate(self.f_list):
 self.f_list_lenght = index
 download_button = tk.Button(format_select_window, text='Download', command=self.download)
 download_button.pack(padx=10, pady=10)
 #Adding options to the listbox
 for f in self.formats:
 #If it is adding an audio only format, it will add the ID, filesize (if possible with try block) and extension
 if 'audio only' in f['format'] + ' ' + str(f['fps']) + ' FPS ' + f['ext']:
 try:
 mb_filesize = round(f['filesize'] / 1024 / 1024, 2)
 self.format_listbox.insert(self.f_list_lenght, f['format'] + ' ' + str(mb_filesize) + ' MiB ' + f['ext']) 
 except:
 self.format_listbox.insert(self.f_list_lenght, f['format'] + ' ' + f['ext'])
 #If it is adding a video format, it will add the ID, FPS, filesize (if possible with the try block) and extension
 else:
 try:
 mb_filesize = round(f['filesize'] / 1024 / 1024, 2)
 self.format_listbox.insert(self.f_list_lenght, f['format'] + ' ' + str(f['fps']) + ' FPS' + ' ' + str(mb_filesize) + ' MiB ' + f['ext'])
 except:
 self.format_listbox.insert(self.f_list_lenght, f['format'] + ' ' + str(f['fps']) + ' FPS ' + f['ext'])
 def download(self):
 #Getting the list position of the selected format
 selected_format_list_position = self.format_listbox.curselection()
 #Getting the text of the selected format list item
 selected_format = self.format_listbox.get(selected_format_list_position)
 print('Selected format: ' + selected_format)
 #Cutting from the selected format list item text everything past ' -' to only get the format's ID
 selected_format_id = selected_format.split(' -')[0]
 print('Selected format ID: ' + selected_format_id)
 #Converting the ID to string
 final_selected_format_id = str(selected_format_id)
 print('Final selected format: ' + final_selected_format_id)
 #Cutting from the selected format list item text everything before ' ' to only get the extension
 final_ext = selected_format.split(' ')[1]
 print('Final video extension: ' + final_ext)
 if 'audio only' in selected_format:
 #Creating the download options dictionary (not working):
 #Setting the download location to the videos folder,
 #preventing the program from downloading a whole playlist,
 #telling youtube-dl to extract audio ('x'),
 #giving youtube-dl the requested format (which is only audio).
 self.ydl_opts = {'outtmpl':'./videos/%(title)s.%(ext)s', 'noplaylist': True, 'x': True, 'format': final_selected_format_id}
 #Downloading
 with youtube_dl.YoutubeDL(self.ydl_opts) as ydl:
 ydl.download([self.selected_url])
 elif 'audio only' not in selected_format:
 #Adding '+bestaudio' to the selected format ID (which is only a video ID in this case)
 final_selected_format_id_video_audio = str(selected_format_id) + '+bestaudio'
 #Creating the download options dictionary:
 #Setting the download location to the videos folder,
 #preventing the program from downloading a whole playlist,
 #giving youtube-dl the requested format with audio.
 self.ydl_opts = {'outtmpl':'./videos/%(title)s.%(ext)s', 'noplaylist': True, 'format': final_selected_format_id_video_audio}
 #Predicting the video file title and location for future ffmpeg merge
 self.video_title = './videos/' + self.youtube_title + '.f' + str(selected_format_id) + '.' + final_ext
 print('Video file title: ' + self.video_title)
 #Predicting the audio file title and location for future ffmpeg merge
 self.audio_title = './videos/' + self.youtube_title + '.f' + str(self.highest_audio) + '.' + self.highest_audio_ext
 print('Audio file title: ' + self.audio_title)
 #Downloading with youtube-dl
 with youtube_dl.YoutubeDL(self.ydl_opts) as ydl:
 ydl.download([self.selected_url])
 #Adding input arguments for ffmpeg
 ffmpeg_video = ffmpeg.input(self.video_title)
 ffmpeg_audio = ffmpeg.input(self.audio_title)
 output_ffmpeg_title = './videos/' + self.youtube_title
 #Merging with ffmpeg
 ffmpeg.output(ffmpeg_video, ffmpeg_audio, output_ffmpeg_title, vcodec='copy', acodec='aac')
GUI()



If there is a better way of integrating ffmpeg with youtube-dl in Python, please tell me.