
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (78)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (9350)
-
How to prevent overwriting fifo while playing local file with ffmpeg ?
21 juillet 2013, par frankishI use av_read_frame() to read and push frames to fifo. In another thread, I read from this fifo. So, reading and writing does not interfere that much.
However, I found out that when playing from a local file, audio suddenly skips to somewhere else.. I tried to open recorded file with VLC player and it worked. So the file(recording) is not broken.
I tried (just to see if it works) the following and it works but it has other problems.
...
if(localFile){
while(av_fifo_size(fifoPlayback)>2000000){
pthread_mutex_unlock(&fifoPlaybackMutex);
usleep(1000000);
pthread_mutex_lock(&fifoPlaybackMutex);
// Waiting before writing to fifo, it's not empty enough");
}
}
av_fifo_generic_write(fifoPlayback,...)Since the above block at least does not skip, I think my problem is really overwriting on the fifo. But how should I correctly manage this situation ?
-
arm : use a local label instead of the function symbol in ff_prefetch_arm
20 juillet 2015, par Janne Grunauarm : use a local label instead of the function symbol in ff_prefetch_arm
Avoids a relocation which might end out of range for thumb2.
Reported-By : Ludovic Fauvet <etix@videolan.org>
Bug-Id : https://bugs.webkit.org/show_bug.cgi?id=137022
CC : libav-stable@libav.org -
Cutting the stream on local date time when scheduled
19 juin 2017, par FearhunterI am using a ffmpeg slice commando in my C# code. For example : I scheduled a stream from 12pm till 3 pm. In my if statement I use a condition to compare the local datetime with the time of now.
DateTime systemDate = DateTime.Now;
DateTime compareDate = DateTime.Today;
private Process SliceStream(string url)
{
if (systemDate < compareDate)
{
return Process.Start(new ProcessStartInfo
{
FileName = "ffmpeg.exe",
Arguments = $"-i \"{url}\"-acodec aac -strict -2 -vcodec libx264 -hls_wrap 100 -f hls -hls_time 20 C:/var/1.m3u8 ",
UseShellExecute = false,
RedirectStandardOutput = true
});
}
else
{
Thread.Sleep(100);
return null;
}
}The problem is it doesn’t work when my time on my computer is for example 12pm and he is not cutting the stream.
What am I doing wrong ?