
Recherche avancée
Autres articles (71)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (4390)
-
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 ?


-
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 -
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.