
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (32)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (6432)
-
Facebook Live Stream API on iOS
11 août 2020, par Deepak SharmaI see Facebook has a graph API to go live on Facebook, fetch all user reactions, create a poll, etc. But I don't see any sample code in the SDK for the same. I want to stream video from iOS/Android app to Facebook.


- 

-
Is it sufficient to use ffmpeg based libraries on iOS to create live RTMPS stream on Facebook or a third party cloud service is required ? Any sample code that has the Facebook live function builtin ?


-
What does the live video API review involves ? Anyone familiar with common causes of rejection for the live video API ?








-
-
Facebook live video can only be previewed while streaming my Mac screen
24 janvier 2017, par iownthegameI use the following ffmpeg command to share my screen streaming to Facebook.
ffmpeg -f avfoundation -r 10 -video_size 352x288 -i "0" -c:v h264 -f flv
"rtmp://rtmp-api.facebook.com:80/rtmp/1269140699772419?ds=1&a=AaYsXcYcdHQrrrUF"then I can see the video preview scenes
however, once I press the ’Go Live’ button, and go to my facebook page, I can find a post said I am Live Now. When I press the ’play button’, there are only black scenes that last for 1 2 seconds, and the video ends.
And there is also a weird thing, the video can be played when I end up the live stream. When refreshing the page, I can find a post said I was Live, the video of this post can be played successfully.
Anyone knows why the video can be watched when previewing and finishing live but not the exact live moment ?
[updated]
During the live streaming period, if I press the play button, there are only 1 2 seconds black scenes and the live stream ends.
However if I press the video frame again, another modal pops up then I can see the live streaming. Is it a facebook bug ?
-
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.