
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (27)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (6423)
-
avcodec/wmavoice : Don't initialize GetBitContext with buf == NULL
27 septembre 2022, par Andreas Rheinhardtavcodec/wmavoice : Don't initialize GetBitContext with buf == NULL
Happens when flushing. This triggers NULL + 0 (which is UB) in
init_get_bits_xe (which previously errored out, but the return value
has not been checked) and in copy_bits().This fixes the wmavoice-(7|11|19)k FATE-tests with UBSan.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avdevice/dshow : prevent NULL access
21 décembre 2021, par Diederick Niehorsteravdevice/dshow : prevent NULL access
list_options true would crash when both a video and an audio device were
specified as input. Crash would occur on line 784 because
ctx->device_unique_name[otherDevType] would be NULLSigned-off-by : Diederick Niehorster <dcnieho@gmail.com>
Reviewed-by : Roger Pack <rogerdpack2@gmail.com> -
FFMPEG gives Working Directory : null error
5 décembre 2016, par Urvashi PatelI’m working in a video processing project and i’m using precompiled FFmpeg library for that.
Now, ffmpeg file must be create under data/data/packageName/files/ directory in Android Device Monitor after compile library from gradle file.
But ffmpeg file can’t be create. So, I got Exception as :
java.io.IOException: Error running exec(). Command: [/data/data/com.example.videotomp3_ffmpeg/files/ffmpeg, -i, file:///android_asset/SampleVideo.mp4, -vn, -acodec, copy, /storage/emulated/0/VideoToMP3_FFmpeg/SampleMP3.mp3] Working Directory: null Environment: null
Please tell me what can I do for solving this problem ?