
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (50)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (10113)
-
Create Android application which to convert RTSP url into Srt url and play streaming using exoplayer or ffplay [closed]
25 février, par Anuj VaishCreate Android application which to convert RTSP url into Srt url and play streaming using exoplayer or ffplay :


Step 1 : (it's done) Docker convert mp4 file to RTSP URL (rtsp ://10.10.15.25:8554/mystream)and verify in ffplay "ffplay -rtsp_transport tcp rtsp ://10.10.15.24:8554/mystream"


Step 2 : RTSP URL run on Exoplayer (it's done)


Pending :
Step 3 : RTSP Url conversion SRT URL (srt ://live.cloudflare.com:778 ?passphrase=&streamid=)
it's playback :
srt ://live.cloudflare.com:778 ?passphrase=&streamid=play


Step 4 : Play SRT URL in Exoplayer or ffplay in android application.


I want to use ffmpeg-kit or ffmpeg-full or same dependency default not support srt protocol in documentation provide is support in android.


-
How to stream video with Play 2 framework
28 avril 2015, par davidshen84I want to use Play 2 framework to develop a simple video stream function on my website. The videos are in mp4 format.
I used the Enumerator, and the method discussed at this post. In the client side, I use the
<video></video>
tag to play my video. I tested my application on 3 latest browsers, but none of them can play my video :- Chrome : display a empty player
- IE : it tries to download the video like a file...i guess it is IE
- Firefox : display a message saying the video is corrupted
However, if I download the video file, it can be played in the player. I am not sure whether it is because my video codec does not support streaming, or it’s my code has problem.
ffmpeg -i input.mp4 :
built with gcc 4.9.2 (GCC)
configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libdcadec
--enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger
--enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265
--enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib
libavutil 54. 23.101 / 54. 23.101
libavcodec 56. 35.101 / 56. 35.101
libavformat 56. 31.100 / 56. 31.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 14.100 / 5. 14.100
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 1.100 / 1. 1.100
libpostproc 53. 3.100 / 53. 3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '.\input.mp4':
Metadata:
major_brand : isom
minor_version :
512
compatible_brands:
isomiso2mp41
encoder : Lavf56.31.10
0
Duration:
00:00:14.4
0
, start:
0.000000
, bitrate:
890 kb/s
Stream #0:
0(und): Video: mpeg4 (mp4v / 0x7634706D), yuv420p, 160x120 [SAR 1:1 DAR 4:3], 889 kb/s,
25 fps,
25 tbr,
12800 tbn,
30k tbc
(default)
Metadata:
handler_name :
VideoHandler
At least one output file must be specified -
ffmpeg extract video unable to play
30 juin 2021, par Khánh Phạm ĐìnhI use
ffmpeg
to stream video and show up the camera's frame to window in the same time according to current code :

file
record_video_and_showup.sh


ffmpeg -f v4l2 -framerate 30 -i $1 -c:v libx264 -preset superfast -crf 18 -pix_fmt yuv420p -c:a libmp3lame -ac 2 -ar 44100 -b:a 128k -f tee -map 0:v "$2|[f=nut]pipe:" | ffplay -an pipe:



to record video and show up :


./record_video_and_showup.sh /dev/video0 test.mp4



finally, we get file
test.mp4
but can't play it on app such as vlc. When we open it on google chrome, it can run but the start and end time were incorrect.

Can anyone help me ?