
Recherche avancée
Autres articles (94)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (6184)
-
AR.DRone C# Library [closed]
10 décembre 2015, par Geaper on PCCan anyone teach me how to install this ?
https://github.com/Ruslan-B/AR.Drone
I’ve tried installing many times and every time I find errors because of FFmpeg.AutoGen.
I’ve tried this :
Download the project
Download x64 static ffmpeg.zeranoe(dot)com/builds/
Run the .bat fileAnd nothing works. I am new in visual studio and I can’t seem to put it to work. There is no detailed help on installation.
-
fftool/ffplay : avoid same name in local variable
30 décembre 2023, par xufuji456 -
FFmpeg make mpeg2 ts without discontinuity
31 mai 2012, par user1427162I have many MOV files recorded with iPhone and I want to convert them to mpeg2 TS. I want to use them for live video streaming with HTTP Live Streaming protocol.
I set my iPhone to continiously send MOV files to server. Every video clip is 5 seconds long. I want to make mpeg2 TS out of them and add their urls to m3u8 playlist.
I managed to do all of that, but when I try to play the stream VLC player plays only first two files in playlist, and last file in playlist at that moment.
I searched the internet and I think this has something to do with discontinuity.Is there any way to convert multiple MOV files into multiple mpeg2 TS segments without discontinuity ?
Or maybe I'm doing something else wrong ?
Here is my ffmpeg command :ffmpeg.exe -i input,MOV -f mpegts output.ts
and here is my m3u8 list :
#EXTM3U
#EXT-X-PLAYLIST-TYPE:EVENT
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:10,
fileSequence0.ts
#EXTINF:10,
fileSequence1.ts
#EXTINF:10,
fileSequence2.tsThanks in advance