
Recherche avancée
Médias (1)
-
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
Autres articles (46)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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) (...)
Sur d’autres sites (5766)
-
What is the best ffmpeg command keeping the best quality to convert a m3u8 file into a mp4 file ?
16 novembre 2019, par NicrycOk so I downloaded a .m3u8 file on the Internet. I saw that this file extension corresponds to a HTTP Live Streaming protocol also called HLS. This protocol consists of an index file (the m3u8 file) that is a text file containing several URL redirecting to .ts files. Those .ts files are video files where each one are a little part of the whole video. Then I searched and found on Wikipedia and on the Apple website that this protocol embeds the MPEG-4 (H.264) video format.
If I’m not mistaken .mp4 is the file extension of the MPEG-4 (H.264) video format. So a mp4 file is always a MPEG-4 (H.264) video. I use ffmpeg to convert this .m3u8 file into a "normal" video file. Currently I use this command :
ffmpeg -protocol_whitelist "file,http,https,tcp,tls" -i input.m3u8 output.mp4
Although even if the video quality is almost perfect it’s a little below the quality of the original m3u8 file. I know I’m really pernickety but is there a better command to keep the original quality ? Or does the ffmpeg convertion command involve inevitably a quality loss ?
-
ffmpeg/batch file : input format stays in output file name
11 juin 2015, par FilippI created this batch file to put all aac files in one directory into an m4a container. The command works so far, but every new file generated has the format of the input file in the output files name.
For example : test(.aac) is in an m4a container but is NAMED test.aac(.m4a)
Here is the .bat file :
for /r %%X in (*.*) do (
ffmpeg -i "%%X" "%%X.m4a"
)
pauseI’ll be grateful for any easy solution, best regards and thanks to everyone
-
How to extract the rttm format file from .wav audio file
5 juillet 2023, par LahfirI would like to extract the .rttm file for an input .wav audio file in python


def extract_rttm_file(wav_path):
 """Extracts the .rttm file from the converted wav file.

 Args:
 wav_path: The path to the converted wav file.

 Returns:
 The path to the .rttm file.
 """

 output_path = os.path.splitext(wav_path)[0] + ".rttm"
 subprocess.call(["sox", wav_path, "-rttm", output_path])
 return output_path`



I tried the above code but it doesn't ouput the rttm file