
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (59)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (4546)
-
Use argument shortest in C++ code in FFMPEG
7 juillet 2021, par 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


-
ffmepg binarys can't be implemented in the code
2 janvier 2016, par 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 ?
-
avformat_open_input return value, error code on NaCl Module
7 février 2016, par 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