
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (43)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
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 (...)
Sur d’autres sites (11139)
-
How do you change a video's resolution depending on the original one in FFMPEG ?
16 avril 2022, par WilliamLeeTo break it down, I want to set a maximum resolution depending on the original videos resolution in ffmpeg, for an example, if i'm converting a video from 144p - 1080p, and the original video's resolution is 480p, ONLY convert the video from 144p - 480p, not 1080p.


-
Is there a way to run a ffmpeg command based on the videos resolution ?
15 avril 2022, par William LeeAs an example, if a video has a maximum resolution of 480p, DO NOT convert it to 1080p, just convert it from 144p to 480p.


Is there any way that this is possible ?


-
FFprobe reading incorrect resolution value despite players rendering it correctly
24 juillet 2015, par BoehmiI’m creating a video from a stream with the help of FFMPEG and I also use FFPROBE to gather information for use on a status page like resolution, codecs et cetera.
When FFProbe parses my video for information, I get a resolution value of 544x576 (almost a square !), but an aspect ratio of 16:9.
These values are consistent on both the input stream and my saved video.
When I watch the video in the standard HTML5 Player, VLC or FFPLAY however, I get a video with the proportions of 16:9 and a resolution (measured using an image editing program) of 1024x576 that does look native and not stretched in any way.
Even if I re-encode the video using slightly different codecs, this incorrect resolution value persists, even though every player I use displays it correctly.
This is slightly inconvenient because I am relying on getting the correct resolution value from the video for further processing.
I’m also using a recent FFMPEG+FFPROBE version that was compiled on the 15th of July.
Is this a bug within FFMPEG or is there anything I’m doing wrong ?
Used command lines :
FFMPEG :
ffmpeg -i source -loglevel debug -vcodec copy -acodec copy -bsf:a aac_adtstoasc -movflags +faststart -t 360 -y video.mp4
FFPROBE (I parse the output of this directly and save the values) :
ffprobe -i source -show_format -show_streams
FFProbe output :
width=544
height=576
coded_width=544
coded_height=576
has_b_frames=2
sample_aspect_ratio=32:17
display_aspect_ratio=16:9I can see that the sample aspect ratio is different from the display aspect ratio, but how come the video looks proper in 16:9 when it’s supposedly encoded at a near square resolution ?