
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (33)
-
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 : (...) -
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 (...) -
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 : (...)
Sur d’autres sites (5182)
-
Don’t override flat SSE2 dequant functions with non-flat AVX ones
15 août 2011, par Anton MitrofanovDon’t override flat SSE2 dequant functions with non-flat AVX ones
-
Can I use FFMPEG to record ultra sonic ?
23 février 2018, par OtakuFitnessI use
av_dump_format()
to check information and I getStream #0:0: Audio: pcm_s16le, 48000Hz, 2 channels, s16, 1536kb/s
Now I can record music, it’s working well(I generated a pcm file to listen). However, in terms of ultra sonic, I can’t record any useful audio information, so can I use FFmpeg to record ultra sonic ?
-
What FFMPEG return when camera is disabled (unplug)
21 août 2017, par hungI use FFMPEG to connect to a IP camera via RTSP stream. I try to detect if connection is lost. I create timeout with interrupt_callback, and check the output of av_read_frame(), sometime it work and can reconnect to camera. But if I disable the camera (unplug the network cable), it’s blocked and pause forever.
Hope someone has similar issue and can help me.
Here what I try :Setting for interrupt_callback :
ifmt_ctx = avformat_alloc_context();
ifmt_ctx->interrupt_callback.callback = interruptCallback;
ifmt_ctx->interrupt_callback.opaque = this;
if ((ret = avformat_open_input(&ifmt_ctx, in_file, 0, &options)) != 0) {
log.error("Could not open input stream {}", in_file);
return 1;
}interrupt_callback function :
int CtFfmpeg::interruptCallback(void *ctx)
{
CtFfmpeg* camera = reinterpret_cast(ctx);
struct tm *tm;
time_t now;
now = time(0);
tm = localtime (&now);
int nowTime_callback = tm->tm_sec;
if ((nowTime_callback - camera->initTime_callback) > 15) { //Timeout after 20 seconds
Logger log{__func__};
log.error("Time out");
return 1;
}
return 0;
}Try to restart connection :
ff->ret = av_read_frame(ff->ifmt_ctx, &(ff->tmp_pkt));
if (ff->ret < 0){
// do restart here
}