
Advanced search
Medias (1)
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (68)
-
List of compatible distributions
26 April 2011, byThe 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 (...) -
Les tâches Cron régulières de la ferme
1 December 2010, byLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Publier sur MédiaSpip
13 June 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
On other websites (8868)
-
avformat_open_input return value, error code on NaCl Module
7 February 2016, by JarI’m trying to port FFmpeg into my NaCl module.
So far, my module linked ffmpeg and SDL libraries.
It already can play YUV format video which is directed load into memory and copy into YUVOverlay buffer (it’s very easy).
Now, I want to use ffmpeg to decode video, but when I call the function avformat_open_input it returns
-5
when input is URL string, such asrtmp://
ormmsh://
; it returns-1052488119
when input is file name, such as/saved/tmp
(I mount the file system - html5fs).
There are some questions:
- What means of -5 and -1052488119?
- If file can’t open by avformat_open_input, is it possible the input type is from buffer not from file name or url string?
If I’m not clearly about my question or description, you can tell me.
If you are doing the same thing or having the same problem, we can discuss together.Thanks,
Jar -
ffmepg binarys can't be implemented in the code
2 January 2016, by yokoI am using ffmpeg and C# in my project. I want to write the frames I have imported into a new video. The Problem is, as soon as I want to create a new instance of the
VideoFileWriter
class, which is delivered by theAForge.Video.FFMPEG
namespace, I get a FileNotFoundException (while runtime):System.IO.FileNotFoundException" in System.Windows.Forms.dll
So, I have researched, and some sourced claim that you need not only to import the dll’s into your project, but also in your output folder(like this one)
I did it, it did not help either.I have already taken a look, I have imported all dll’s into my project, and I have set up their location in the PATH-Variables (And yes, restarted.)
The Codeline, which is throwing the Exception is the following
VideoFileWriter writer = new VideoFileWriter();
anyone else had this Problem or knows a solution?
-
Use argument shortest in C++ code in FFMPEG
7 July 2021, by Little MaxI need to set up the argument "-shortest" but in c++ code. I know that I can set up an argument with value for example:


av_opt_set(codecContext, "crf", "28", 0);



But here is the thing, there is a value, but in shortest no value.
So how can I set up shortest in c++ code


Thanks in advance