
Recherche avancée
Autres articles (52)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
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 (4847)
-
FFMpegm. Unable to get video stream from a onvif camera
15 avril 2018, par Denis GottardelloI have implemented ffmpeg in my own application to watch live video from video cameras.
I have tested my application with 2 models of onvif camera and the application works perfectly.
The customer has got another model of video cameram still onvif h264 but I can’t watch the live stream.
I can wath it using vlc but when I try to watch it with my application I obtain the following error :Input #0, rtsp, from 'rtsp://admin:admin@172.30.153.33:554/1':
Metadata:
title : h264.mp4
Duration: N/A, bitrate: 64 kb/s
Stream #0:0: Video: h264, none, 90k tbr, 90k tbn, 180k tbc
Stream #0:1: Audio: pcm_mulaw, 8000 Hz, 1 channels, s16, 64 kb/s
[rtsp @ 0x7f86b8004e00] UDP timeout, retrying with TCP
[rtsp @ 0x7f86b8004e00] method PAUSE failed: 455 Method Not Valid In This State
[rtsp @ 0x7f86b8005000] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' optionsI have already tried to modify analyzeduration and probesize without any good result.
How to resolve this error ?
Could it be caused by a not up-to-date h264 library ? -
Splitting videos slowly using FFMpeg in android
13 mai 2017, par KrishHi i am using FFMpeg below command1 for splitting video files in android,I am facing problem here when i upload more than 40Mb file taking too long time for splitting the files
Using command2 videos are splitting very fastly but splitting files size count more than main file size
Is there no way for splitting videos fastly with not increasing splitting videos count size compare to main file,Can some one help me please.
Command1 :-
String[] cmd = {"-ss", "" + "0", "-y", "-i", "inputFile", "-t", "" + "5", "-s",
"width" + "x" +
"height", "-vcodec", "mpeg4", "-b:v",
"2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", Environment.getExternalStorageDirectory() +
"/FFMpeg" + "/" + outPutFile + "" + indexValue + "" + "." + "mp4"};Command2 :-
String cmd[] = new String[]{"-i","inputfile", "-ss", "" + start, "-c", "copy", "-t", "" +
end, "-acodec", "copy", "-vcodec", "copy",
Environment.getExternalStorageDirectory() +
"outPutFile.mp4"}; -
Merge commit 'b128be1748f3920a14a98307265df5f2d3433e1d'
12 février 2018, par Mark ThompsonMerge commit 'b128be1748f3920a14a98307265df5f2d3433e1d'
* commit 'b128be1748f3920a14a98307265df5f2d3433e1d' :
vf_*_vaapi : Support increasing hardware frame pool sizeRewritten to apply to common VAAPI code rather than specific filters.
Merged-by : Mark Thompson <sw@jkqxz.net>