
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (51)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (4768)
-
FFmpeg not splitting videos precisely
23 novembre 2022, par SRK7KyrosI was trying to use FFmpeg to split videos into 30s segments, here is the full code :


from tkinter import filedialog, Tk
import subprocess
import os
Tk().withdraw()
path_to_video = filedialog.askopenfilename()

segment_duration = input("Enter each segment duration in second: ")

os.chdir(os.path.dirname(__file__))
subprocess.run([
 "E:\\Programs\\FFmpeg\\ffmpeg-master-latest-win64-gpl\\bin\\ffmpeg.exe", 
 "-i", path_to_video, 
 "-c:", "copy", 
 "-map", "0", 
 "-segment_time", segment_duration, 
 "-f", "segment", 
 "-reset_timestamps", "1",
 "Output_%03d.mp4"])



But it actually splits it into videos with really low precision, how can I fix it ? Another post regarding this topic suggested adding this line :


"-force_key_frames", f"expr:gte(t,n_forced*{segment_duration})",



But it didn't really work...


-
How to concatenate videos and adding background audio by using FFMPEG library
9 mars 2017, par FurqanI am very new to FFMPEG library and i want some directions to implement a program that receives an list of videos (mp4 format) and audio file (mp3 ) and concatenate them with timestamps and remove its audio and add given audio and output a final video.
Thanks
-
How to get the information of bit-rate from YouTube videos ?
21 janvier, par Ashutosh SinglaI was using YouTube videos for my test and I was wondering how can I get the information of bit-rate of the played video ?



I used 2 methods to know the information about the bit-rate but didn't get any information.



1. Right-click on a video and choose "Stats for nerds".
2. ffmpeg -i input_video -f ffmetadata metadata.txt




I don't know if by doing the right click on the video and then properties, then details would give me the correct way of showing the bit-rate.



Any suggestions ?