
Recherche avancée
Autres articles (80)
-
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 (...) -
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" (...)
Sur d’autres sites (12428)
-
ffmpeg scale filter takes too long
17 juin 2020, par Prashant_SarinI am using below command to scale and blur a video but it is very slow. Can anyone please help if i can improve the speed somehow.



"ffmpeg -i $inputPath -lavfi [0:v]split=2[original][copy];[copy]scale=ih*16/9:-1,crop=h=iw*9/16,boxblur=luma_radius=50:chroma_radius=25:luma_power=2[blurred];[blurred][original]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2[final] -map [final] -map a:0 -g 2 -preset ultrafast $outputPath -y"



-
Problems cropping videos with ffmpeg -ss -t
8 décembre 2016, par Alex BollbachI have been trying to figure out how to precisely crop out sub-sections of a video
final.mp4
, for example a cropped video with range [0.2, 0.28] or [9.1, 10.2]. So I’ve been using ffmpeg with -ss and -t options. The following command (or some similar form) is what I’ve seen prescribed :ffmpeg -y -i final.mp4 -ss 00:00:01 -t 00:00:01.5 -acodec copy -vcodec copy crop1.mp4
What I expect is a cropped video of length 1.5 starting at time
1.0
, but I get a broken video that doesn’t play. Or I’ll try :ffmpeg -y -i final.mp4 -ss 1 -c copy -t 1.5 crop1.mp4
and get a video with the audio cropped to 1.5 seconds but the video lasting much longer freeze framed.
The point is this should be a relatively straightforward operation but I’m running into problems at every turn. What is wrong with these commands ? My original video is a 7 minute youtube ripped mp4 which I trimmed down to 10 seconds (this seemed to work). But now further finer-grain trimming of that video is showing confusing behavior. Perhaps my video file is somehow in a bad state from the first trimming ?
-
Flutter app crashes in release mode when initializing FlutterFFmpegConfig() ;
18 février 2021, par Mahmoud EidarousThe app is working on Android on Debug mode(only) with no errors in the logcat/terminal.
But when I tested it on iOS (even in debug mode), it crashes on a specific page.
After long tests, I could know that this line was causing the app to crash.


FlutterFFmpegConfig _flutterFFmpegConfig = FlutterFFmpegConfig();



If I comment that line, the app won't crash, but I need that line to manipulate videos in the app.


I'm using
flutter_ffmpeg: ^0.3.0
inpubspec.yaml
, andfull-gpl
package is set inandroid\build.gradle


ext {
 flutterFFmpegPackage = "full-gpl"
}



Related package initializations code snippet :


final FlutterFFmpegConfig _flutterFFmpegConfig = new FlutterFFmpegConfig();
final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();
final FlutterFFprobe _flutterFFprobe = new FlutterFFprobe();



I'm not sure, but it seems like the app can't handle creating all these objects at the same class !
Anyone familiar with this problem ?