
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (65)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (10786)
-
How to convert a video to be compatible with facebook graph (reel) api
25 mai 2023, par MichaI am currently trying to get this api to work : create user media


Everything works if I try to post photos. But as soon as I try to post a reel I always get the same error :


{
 "error": {
 "message": "The video file you selected is in a format that we don't support.",
 "type": "OAuthException",
 "code": 352,
 "error_subcode": 2207026,
 "is_transient": false,
 "error_user_title": "Unsupported format",
 "error_user_msg": "The video format is not supported. Please check spec for supported streams format",
 "fbtrace_id": "<removed>"
 }
} 
</removed>


So I look into the reel specifications here : reel specification


Try as I might, I cannot get it to work. I work with technical google searches all day long, yet this time I seem to be looking in a completely wrong direction.


I have tried converters like Any Video Converter.


I have tried
ffmpeg
with the following command :ffmpeg -i input.mp4 -c:v libx264 -aspect 16:9 -crf 18 -vf "scale=iw*min(1280/iw\,720/ih):ih*min(1280/iw\,720/ih),pad=1280:720:(1280-iw)/2:(720-ih)/2" -fpsmax 60 -preset ultrafast -c:a aac -b:a 128k -ac 1 -pix_fmt yuv420p -movflags +faststart -t 59 -y output.mp4


If there is a solution with
ffmpeg
I would appreciate it as I could automate much of the process. But if you know of any converter software I would gladly take that as well.

I think the main problem is the container requirement
MPEG-4 Part 14
. I can't seem to find any software that is able to produce a video with the required format. The closest I have gotten isMPEG-4 Part 10
but that doesn't work with the api.

Any help would be greatly appreciated.


-
Evolution #4106 : Géré les objets sur l’affichage des documents
1er mars 2018, par RastaPopoulos ♥Gnih ? Comment ça un autre passage ? Tu sais bien que les documents s’insèrent déjà de base sur TOUS les objets déclarés à SPIP, si t’as configuré l’objet comme pouvant recevoir des documents, dans la config des docs. Ya strictement rien à faire, le plugin Médias fait déjà ça depuis que SPIP 3 et API des objets génériques.
-
FFMPEG Spectrogram max Frequency
14 janvier 2018, par gooIs there a way to select max frequency when generating spectrograms whith
ffpeg
?$ ffmpeg -i some.mp3 -lavfi showspectrumpic image-out.png -y
showspectrumpic
docs doesn’t say anything about it :(