
Recherche avancée
Médias (1)
-
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 (67)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (9948)
-
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.