
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (44)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (5738)
-
Create VHS Hi-Fi type (20Hz-20kHz) WAV file, from a 48kHz source FFmpeg [closed]
27 août 2023, par Taymur RoshanI've been experimenting with using FFmpeg to convert modern high-quality audio (44.1, 48 & 96kHz etc.)into analogue type audio which are the old fashions Hi-Fi sounds like the 20 kHz frequency sampling signals https://en.wikipedia.org/wiki/VHS#Hi-Fi_audio_system.


But since I already figured out of how to simply convert high frequency (source 48kHz) to low frequently (output 20kHz) using the '-ar' filter :


ffmpeg -i "source.webm" -c:a pcm_s16le -ar 20000 "output.wav"



However what I would like to know is that how can I make a genuine "flat full-range frequency response" 20 Hz to 20 kHz ?


That would mean first downmix to 20kHz and also remove the first 20Hz out of the audio.


-
Evolution #3962 : Générer des JPEG progressifs
18 juin 2017, par Michel BystranowskiMmm, ça a l’air un peu plus compliqué qu’au premier abord effectivement. J’ai trouvé cet article qui compare le taux de compression et recommande de ne le faire que pour les fichiers de plus de 10k, sous peine d’obtenir des fichiers plus gros (https://yuiblog.com/blog/2008/12/05/imageopt-4/). Du coup il faudrait s’arranger pour ne cibler que les gros JPEGs.
Par côté compatibilité des navigateurs ça semble ok pour tous les navigateurs récents (https://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28graphics%29#JPEG_support).
-
Stream and control a playlist to RTMP
20 décembre 2016, par EightI’m currently trying to stream a playlist of files from ffmpeg to an RTMP server.
I’ve managed to get a single file to be streamed correctly, and (I think) a playlist by using :"concat:file1.pm4|file2.mp4|file3.mp4"
I then tried to use the concatenation method from a txt file they explain here :
https://trac.ffmpeg.org/wiki/ConcatenateAnd was able to get it to work. However I seem to have some problems with controlling it. For example, I have no idea if it is possible to tell ffmpeg to skip this file and play the next one in the list, or to pause the stream at all. I already tested editing the txt file while it is streaming, but that didn’t seem to affect what was already streaming at all.
Any idea how I can control my stream from the console ? My end goal would be to make the control into a full web interface later, but I’m not even sure if ffmpeg is my best option to do this.
Any help with ffmpeg or any other options to do this would be greatly appreciated.