
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (63)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (8163)
-
Using FFMPEG to add pillar bars
10 février 2021, par Ewok BBQI have transferred some film to video files from 16mm (native 4:3). The image looks great.


When I scanned them, I scanned to a native 16:9. As I overscanned them, I got the entire height of the frame, which is what I want. But it also got the soundtrack and perforation. But I want to go just to the frame line on the sides as well.


I can CROP the image down with FFMPEG to remove the information outside of the framing I want [-vf crop=1330:1080:00:00].
I know this will result in a non-standard aspect ratio.
This plays fine on a computer (vlc just adapts to the non-standard).


But for standardized delivery, I would love to keep the native 1920x1080 pixels, but just make everything outside of the centered 1330:1080 black.


Is there a way to specifically select where the pillar bars are ?


I really want to re-encode the video as little as possible.


In that vein, does anyone have a better tool than -vf crop as well ?


thank you very very much.


-
How does Chrome decide how much video to buffer for HTML5 MP4 ?
5 mars 2015, par user3466413I have an MP4 video that is variable bitrate, so the average bitrate doesn’t necessarily stay consistent throughout the entire file. Because my video is a capture of a computer screen, some parts of the video are very low bitrate because nothing is happening, and other parts are a much higher bitrate because there’s a lot of activity on the screen.
How does Chrome decide how much video to buffer for progressive download HTTP(S) videos ? I’m running into a problem where Chrome tends to buffer too little, so playback stutters.
If there’s no way of convincing Chrome to download a certain time of video (and I don’t want to just preload the entire thing), can I author the MP4 some special way to solve the problem ? I’m using FFmpeg and MP4Box. Maybe it’s up to the HTTP server ?
-
How to use FFMPEG to capture a browser's tab content
7 avril 2017, par rikiI’m working on a project where I need to record HTML5 animations that are going to play in different browser’s tabs.
So I’ve been reading a bit, and apparently it could be done using FFMPEG, maybe using the gdigrab device :
https://www.ffmpeg.org/ffmpeg-devices.html#gdigrabWhere you can even grab from a specific window (like record calc.exe using title=Calculator)
I want to use this logic to capture each of the multiple browser tabs contents. (or at least one) But I don’t know the Firefox/Chrome tabs "title" or if they even work as windows.
I’d also need to record audio, so I would need to either mix the computer’s output device with the video from the tab.
If anyone has more information on how I could do this, I would greatly appreciate it.
Thanks,