
Recherche avancée
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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
Sur d’autres sites (5695)
-
M3U8. Convert all parts to mp4 [closed]
5 juin 2020, par Zikrulloh TolibjonovMy name is Zikrullah. I have the
m3u8
file of the serial. 1m3u8
file contains all parts of the series and all audio languages for the player. The parts in it were saved ints
format for 10 seconds (as far as I understand). When I opened them3u8
file, it contained a link to otherm3u8
files. If I'm not mistaken, these are separatem3u8s
for audio languages. but allm3u8
andts
files related to the video are on a other server. I need to upload all the files to my server while keeping them all in order. Of course usingphp
. I'm sorry if I made a mistake. I don't know English well, but I tried :)

-
Revision 59d63e610a : vp9 : fix -Wclobbered (longjmp + local variables) Local variables used at the se
23 décembre 2014, par James ZernChanged Paths :
Modify /vp9/decoder/vp9_decoder.c
Modify /vp9/encoder/vp9_encoder.c
vp9 : fix -Wclobbered (longjmp + local variables)Local variables used at the setjmp() site need to be marked volatile.
Relevant excerpt from the ’man longjmp’ :===============
The values of automatic variables are unspecified after a call to
longjmp() if they meet all the following criteria :
· they are local to the function that made the corresponding setjmp(3) call ;
· their values are changed between the calls to setjmp(3) and longjmp() ; and
· they are not declared as volatile.
===============Change-Id : I093e6eeeedbf5f781d202248ca701ba2c29d3064
-
How to concat MP4 files in JAVA [on hold]
24 octobre 2017, par Laurent NAVETI have to concatenate 2 videos in MP4 format, one of which I receive via WS REST in InputStream and the other one on the hard disk.
-
The first solution studied was SequenceInputStream(file1, file2) but it does not work.
-
I tried with FFmpeg command line it works, but I can not directly convert the 2 MP4 file I need to convert to mpeg first. Here are the orders made :
ffmpeg -i 1.mp4 DD.mpeg
ffmpeg -i DS.mp4 EE.mpeg
ffmpeg -i "concat:DD.mpeg|EE.mpeg" -c copy output.mpeg
ffmpeg -i output.mpeg ok.mp4
However, if I have to do it in java, it will be long to do because I have to store all on the disk ... and at the end redo an inputStream ...
Do you have a robust solution to concat 2 MP4 streams ? Knowing that the 2 MP4 files can have different codecs or other ...
Thank you.
Regards,
Lawrence. -