
Recherche avancée
Autres articles (71)
-
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. -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (10310)
-
ffmpeg causes browser to hang up ?
24 juillet 2012, par Itai SagiI'm using ffmpeg to convert videos on the fly, as they say, and I'm facing with a very annoying, unsolvable and unreferenced problem (as of yet ;) ), when I run my php script, it basically works - takes the file, uses ffmpeg, starts converting it, but halway through it's finished, the browser hangs, I don't understand why or how to resolve it :
(even with set_time_limit the bastard won't work).function convertToMp4(){
/*
* Converts a file to mp4, returns the new file name
*/
set_time_limit(0);
$tmpFile = $this->fileName;
$newFile = uniqid();
$outputFile = "output/$justFile.mp4";
exec("ffmpeg -i " . $tmpFile . " -acodec copy -ar 44100 -ab 96k " . $outputFile. " &");
unlink($tmpFile);
return $outputFile;
}Ideas ?
-
ffmpeg aac encoder shows "Input contains (near) NaN/+-Inf"
26 janvier 2021, par zzzzzzhere's a question.
When my code goes to
ret = avcodec_send_frame(enc_ctx, tmpFrame)
, sometimes it returnsAVERROR(EINVAL)
. Many people say that the reason is the format of tmpFrame isAV_SAMPLE_FMT_S16
, but encoder needsAV_SAMPLE_FMT_FLTP
. However, my log shows thattmpFrame->format: 8, tmpFrame->channels: 1, tmpFrame->channel_layout: 4, tmpFrame->sample_rate: 32000, tmpFrame->nb_samples: 1024
. Here 8 is the value ofAV_SAMPLE_FMT_FLTP
.

So what is the reason of this bug ?


-
FFMPEG can not load frei0r plugins via environment path on windows 10
23 janvier 2018, par sam rolfeThis works fine on windows 7 - however on windows 10 mo matter what I try FFMPEG can not load the .dll file.
In debug mode it shows me that it is reading the correct environment path - however it is unable to find the file on that path - its so strange.
Looking for frei0r effect in ’C :\freior/edgeglow.dll’
I have tried with all manner of folders, names, slashes, etc - it always returns
Could not find module ’edgeglow’
I am wondering of there is some sort of user permissions ? Something is blocking it.