
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (105)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 : (...)
Sur d’autres sites (13452)
-
GPUMp4Composer is Muting my video, when app is running on my phnone(android 10). But it is working fine in Emulator(android 9)
11 juillet 2020, par Monis KhanI am using GPUMp4Composer for adding two things :
-Filter
-Watermark


Both the things are working correctly in the emulator (android 9).
But the resulted video from GPUMp4Composer does not have any sound (muted) when I am using the app on my phone (android 10).


This is my code :


Bitmap watermark = BitmapFactory.decodeResource(getResources(), R.drawable.watermark);
 new GPUMp4Composer(srcMp4Path, destMp4Path)
 .size(540, 960)
 .videoBitrate((int) (0.25 * 16 * 540 * 960))
 .filter(new GlFilterGroup(FilterType.createGlFilter(filterTypes.get(select_postion), getApplicationContext())))
 .filter(new GlWatermarkFilter(watermark))
 .mute(false)
 .listener(new GPUMp4Composer.Listener() {
 @Override
 public void onProgress(double progress) {

 Log.d("resp",""+(int) (progress*100));

 }

 @Override
 public void onCompleted() {

 Log.i("watermark & filter","Completed");
 
 }

 @Override
 public void onCanceled() {

 Log.d("resp", "onCanceled");

 }

 @Override
 public void onFailed(Exception exception) {

 Log.d("resp",exception.toString());

 }
 })
 .start();



This only happens when I merge audio(aac file) with my video and remove the original video.


-
how to play H264 mpegts in iphone
26 décembre 2012, par jAckOdEMy server encode video files (h264/acc, mpegts based format) by ffmpeg, and send to a client in a iPhonse. The default mediaplayer of ios sdk can not play those videos. How to play H264/mpegts in Ios ? Is there any opensource player for ios that can play h264/mpeg-ts file.
Thanks.
-
VLC For Android : How to play mpeg2 ts file without PAT
4 juin 2014, par berkeI am developing media player for android with open source VLC player. What I want is to play .ts file that does not have PAT.
How to play this file in android with vlc ?(programatically)
In windows vlc player can play this video by running vlc.exe —demux ffmpeg
How can I achieve this with android vlc lib ?
The reason that I cannot play this video is because vlc cannot find PAT.
Can you help about this ?