
Recherche avancée
Autres articles (58)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 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
Sur d’autres sites (9478)
-
mov : Rework the check for invalid indexes in stsc
13 juillet 2016, par Vittorio Giovaramov : Rework the check for invalid indexes in stsc
There are samples with invalid stsc that may work fine as is and
do not need extradata change. So ignore any out of range index, and
error out only when explode is set.Found-by : Matthieu Bouron <matthieu.bouron@stupeflix.com>
Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>
-
avutil/avassert : always implement av_assume with av_unreachable
7 août, par Kacper Michajłowavutil/avassert : always implement av_assume with av_unreachable
One of the design goals of this macro is the ability to support static
inline predicate functions. Which is emitting warning in clang that a
function may have side-effects and the condition will be ignored. MSVC
doesn't emit warning, but also ignore predicate in such cases.Instead of using assume builtins, implement it using unreachable. Which
solves this case for MSVC and Clang.This reverts ea56fe60acc139a4dc7c531f2cb9f5319cef7a09, but also extends
it to MSVC, which is affected in the similar way.Signed-off-by : Kacper Michajłow <kasper93@gmail.com>
-
Passing two named pipes as input to ffmpeg using python
13 avril, par KiktoI have two av streams, one video and one audio, i'm trying to pipe both as inputs to ffmpeg


os.mkfifo(VIDEO_PIPE_NAME)
os.mkfifo(AUDIO_PIPE_NAME)

ffmpeg_process = subprocess.Popen([ "ffmpeg", "-i", VIDEO_PIPE_NAME, "-i", AUDIO_PIPE_NAME,
 "-listen", "1", "-c:v", "copy", "-c:a", "copy", "-f", "mp4", "-movflags", 
"frag_keyframe+empty_moov", "http://0.0.0.0:8081"], stdin=subprocess.PIPE)

pipe_video = open(VIDEO_PIPE_NAME,'wb')
pipe_audio = open(AUDIO_PIPE_NAME,'wb') #Code stuck here



The code stuck on
pipe_audio = open(AUDIO_PIPE_NAME,'wb')
line, I'm guessing it is happening because ffmpeg only reads the first/video input and ignore the second/audio input so the pipe is not being read.

If I use only
pipe_video
and removing-i AUDIO_PIPE_NAME
flag from ffmpeg everything works fine, but i only get the video without the audio.