
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (56)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (8329)
-
avcodec/pngdec : Copy IHDR & plte state from last thread
29 juin 2015, par Michael Niedermayeravcodec/pngdec : Copy IHDR & plte state from last thread
Previously these chunks where parsed again for each frame with threads
but not without leading to a different path and the potential for
inconsistenciesThis also removes a related special case from decode_ihdr_chunk()
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
How do I simulate rtp (packet) loss simulation ?
18 juin 2015, par HaroldyI previously used JM14.2 to see the cause and effect on the quality of yuv file by the number of slice, FMO, and etc. In the end, I want to increase robustness and resilience to YUV file.
I encoded yuv file first, and then damage the 264 file with the provided simulation rtp_loss (JM14.2) with 5% loss of packets. and then I decoded the 264 file to see the result.
Now I want to try similar simulation with ffmpeg. So I encoded video with this command
ffmpeg -f rawvideo -s:v 352x288 -i akiyo.yuv -vcodec libx264 -preset slower -x264opts slice-max-size=150:bframes=1:keyint=20 -profile:v baseline -f rawvideo hi.264
after I made hi.264 file, I tried to run rtp_loss (JM14.2) packet loss simulation, but I get an error.
I wonder if there is ffmpeg command for rtp loss simulation. If there is, could you tell me how to use it ?
Thanks -
JavaCV Error in Android
18 juin 2015, par Gufran KhurshidIt may be a previously asked related issue regarding JavaCV on Android.My main objective is to apply grayscale/other image effect on video.
File sourceFile = new File(Environment.getExternalStorageDirectory()
+ File.separator + "test.mp4");
FFmpegFrameGrabber ffg = new FFmpegFrameGrabber(sourceFile);
OpenCVFrameConverter.ToIplImage converter = new OpenCVFrameConverter.ToIplImage();
try {
ffg.start();
int count = 0;
while (true) {
Log.d("JAVA_CV", "Counting . . . " + count);
Frame original_frame = ffg.grab();
if (original_frame == null) {
Log.d("JAVA_CV", "original_frame is NULL at" + count);
break;
} else {
Log.d("JAVA_CV", "original_frame is NOT_NULL at" + count);
opencv_core.IplImage frame1 = converter.convert(original_frame);
opencv_core.IplImage frame2 = opencv_core.IplImage.create(original_frame.imageWidth, original_frame.imageHeight, opencv_core.IPL_DEPTH_8U, 1);
opencv_imgproc.cvCvtColor(frame1, frame2, opencv_imgproc.COLOR_RGB2GRAY);
}
count++;
}
} catch (FrameGrabber.Exception fe) {
fe.printStackTrace();
System.out.println(fe.getMessage());
} catch (Exception e) {
e.printStackTrace();
System.out.println(e.getMessage());
}
}The exception has occured at line
opencv_imgproc.cvCvtColor(frame1, frame2, opencv_imgproc.COLOR_RGB2GRAY);
Exception Stack is showing :
OpenCV Error: Assertion failed (scn == 3 || scn == 4) in void cv::cvtColor(cv::InputArray, cv::OutputArray, int, int), file /home/saudet/projects/bytedeco/javacpp-presets/opencv/cppbuild/android-arm/opencv-2.4.11/modules/imgproc/src/color.cpp, line 3739
My research states that the issue is with channels and target color, as stated here.Please tell me the where can I get color-channel sheet ? or some other alternate solution.