
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (31)
-
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 ;
-
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 (...)
-
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4458)
-
Find a resolution (dimension) of a video object saved in S3 - in rails
27 septembre 2015, par JVKI have video files saved in s3 and I want to find the dimension/resolution of any file (lets assume file sizes are in 500mb) per the request comes in my rails app.
One of the options, I have in my mind is :
Download (getObject) the file in local memory and use ffmpeg to find the required info. I currently don’t have ffmpeg, as I don’t need that for any task.
But, I don’t like this option, reason is - I don’t want to waste bandwidth to download it first (takes time) from S3 and then run cpu and memory intensive ffmpeg on my server to merely find the dimension/resolution of the video.
Is there any better solution ?
S3 object HEAD call on object unfortunately doesn’t return dimension information.
-
g2m : Relax resolution change constraints
7 octobre 2015, par Vittorio Giovara -
When ffmpeg transcodes, How to use expr to determine video resolution auto set -b:v suitable bit rate
2 septembre 2022, par SevenFantasticI tried to use this code, but ffmpeg doesn't recognize this way of writing


ffmpeg -i .\test.MP4 -b:v "expr: if(gte(iw,800), 2000K, 1000K)" -f mp4 -y output.mp4



even replace the iw to const 1000, it doesn`t work.


ffmpeg -i .\test.MP4 -b:v "expr: if(gte(1000,800), 2000K, 1000K)" -f mp4 -y output.mp4



But this way of writing it works fine I'm baffled


ffmpeg -i .\test.MP4 -force_key_frames "expr: gte(t,n_forced * 15)" -f mp4 -y output.mp4