
Recherche avancée
Autres articles (79)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (12261)
-
I can't upload a live video on instagram with api mgp25 in php
30 juin 2019, par test testI have problem with upload a video file on live Instagram with
using mgp25 API.$insta_obj->login($this->username[$i], $this->password[$i]);
$ffmpegPath = 'C:/ffmpeg/bin/ffmpeg.exe'; $ffmpeg =
\InstagramAPI\Media\Video\FFmpeg::factory($ffmpegPath);
$stream = $insta_obj->live->create();
$broadcastId = $stream->getBroadcastId();
$insta_obj->live->start($broadcastId);
$streamUploadUrl = $stream->getUploadUrl();
$streamUploadUrl =
preg_replace('#^rtmps://([^/]+?):443/#ui','rtmp://\1:80/',$stream>getUploadUr
l());
$broadcastProcess = $ffmpeg->runAsync(sprintf('-rtbufsize 256M -re -i %s -
acodec libmp3lame -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -s
720x1280 -bufsize 6000k -vb 400k -maxrate 1500k -deinterlace -vcodec libx264
-preset veryfast -g 30 -r 30 -f flv %s',
\Winbox\Args::escape('../view/upload/' . Upload::getEmail() . '/'
.$data['name']), \Winbox\Args::escape($streamUploadUrl))); -
How to post input (Feeds) from camera to ffmpeg (ffserver) for live streaming
1er janvier 2017, par A SahraI want to stream video live that’s captured via getUserMedia and post it to ffmpeg ffserver as an Input or feed to make it live for other users on my website.
How would i get the Video as video4linux2 here ?
$ffmpeg -f video4linux2 -i /dev/video0
I am getting video via getUserMedia from camera and in BackEnd it’s PHP codeigniter.
-
In FFMpeg Ubuntu “rtmp ://url live=1” not working
13 juillet 2015, par Yuvraj KakkarTrying to excute following ffmpeg command in ubuntu.
*
ffmpeg -i "rtmp://IP/live/1234 live=1" -f flv rtmp://IP/live/1234_56
*ffmpeg version 2.2.git Copyright (c) 2000-2014 the FFmpeg developers
built on Apr 8 2014 13:15:21 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --prefix=/home/encoder/ffmpeg_build --extra-cflags=-I/home/encoder/ffmpeg_build/include --extra-ldflags=-L/home/encoder/ffmpeg_build/lib --bindir=/home/encoder/bin --extra-libs=-ldl --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-x11grab
libavutil 52. 74.100 / 52. 74.100
libavcodec 55. 58.102 / 55. 58.102
libavformat 55. 36.102 / 55. 36.102
libavdevice 55. 11.100 / 55. 11.100
libavfilter 4. 3.100 / 4. 3.100
libswscale 2. 6.100 / 2. 6.100
libswresample 0. 18.100 / 0. 18.100
libpostproc 52. 3.100 / 52. 3.100
[rtmp @ 0x3c5a140] Detected librtmp style URL parameters, these aren't supported by the libavformat internal RTMP handler currently enabled. See the documentation for the correct way to pass parameters.
^C[flv @ 0x3c59b00] Could not find codec parameters for stream 0 (Video: none): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[flv @ 0x3c59b00] Could not find codec parameters for stream 1 (Audio: none, 0 channels): unspecified sample format
Consider increasing the value for the 'analyzeduration' and 'probesize' options
rtmp://IP/live/1234 live=1: could not find codec parameters
Received signal 2: terminating.I have installed avserver (Libav) earlier to ffmpeg.Kindly suggest any alternative to live=1 or provide suggstion.