
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (75)
-
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" (...) -
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 (12180)
-
To convert audio file from .wav to .mp3 using ffmpeg flutter
19 septembre 2022, par AkhilI needed to convert an audio file from .wav to .mp3, i have used this package for converting.But its returning with code 1.


FFmpegKit.execute('-i $url output.mp3').then((session) async {
 final returnCode = await session.getReturnCode();

 if (ReturnCode.isSuccess(returnCode)) {


 // SUCCESS

 } else if (ReturnCode.isCancel(returnCode)) {

 // CANCEL

 } else {


 // ERROR

 }
 })



conversion no


-
Stop JavaVC playback warning
5 novembre 2017, par ChaoslabReceiving a stream of command line warnings as video plays - deprecated pixel format used, make sure you did set range correctly
Question :
How can I stop the warnings from happening or being displayed ?Example code below (just frame grabbing, not timed playback).
import java.io.File;
import org.bytedeco.javacv.CanvasFrame;
import org.bytedeco.javacv.FFmpegFrameGrabber;
import org.bytedeco.javacv.Frame;
public class TestPlay implements Runnable {
private static String video_loc = null;
private static CanvasFrame canvas = new CanvasFrame("Test JavaCV player");
public static void main(String[] args) { new Thread(new TestPlay(args[0])).start(); }
public void run() { play_video(video_loc); }
public TestPlay(String loc) { video_loc = loc; }
public static final void play_video(String vid_loc) {
try {
File file = new File(vid_loc);
FFmpegFrameGrabber ffmpeg_fg = new FFmpegFrameGrabber(file.getAbsolutePath());
Frame frm;
ffmpeg_fg.setAudioChannels(0);
ffmpeg_fg.start();
for(;;)
if((frm = ffmpeg_fg.grab()) != null) canvas.showImage(frm);
else {
ffmpeg_fg.setTimestamp(0);
break;
}
ffmpeg_fg.stop();
} catch(Exception ex) { ex("play_video vid_loc:" + vid_loc, ex); }
}
public static final void ex(String txt, Exception ex) {
System.out.println("EXCEPTION: " + txt + " stack..."); ex.printStackTrace(System.out); }
}Looking into these possible solutions...
- Set the correct pixel format before decoding.
- Turning off FFMpeg warning logging.
Will update with a fix when found.
-
How to reduce the app size after use of FFMPEG in flutter ?
10 octobre 2022, par Sugan PandurenganI'm current using
ffmpeg_kit_flutter 4.5.1-LTS
after that my app bundle size increase by 150mb and final bundle size is 250 mb.

Is there any way to reduce the app bundle size with FFMPEG.