
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (41)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (7613)
-
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 :(