
Recherche avancée
Autres articles (20)
-
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (3879)
-
How to extract Blu-ray audio without any conversion ?
30 mars 2015, par Kevin DongAs
avconv
(forked fromffmpeg
) said, the format of Blu-ray audio stream is calledpcm_bluray
, but why most of the tutorials say using-acodec pcm_s**le
(**
depends on its sample rate) ?Are they the same ? If not, how to extract Blu-ray audio without any conversion ?
-
Video conversion too long
13 décembre 2016, par Ilya ShpakovskyI use NReco.VideoConverter for convert flv to ogv. But this process is too long. I tried to convert 200M video but it took more than hour. The code I use :
var ffMpeg = new FFMpegConverter();
command = String.Format("-i \"{0}\" -c:v libtheora -c:a libvorbis -preset ultrafast \"{1}\"", inputFile, outputFile);
ffMpeg.Invoke(command);Could anyone suggest me how to improve the performance of conversion ? Thanks in advance.
-
Show progress of a video conversion with FFMpeg
27 février 2015, par ChrisCreateBossI’m using C# WinForms to make a video converter, I’m using NReco.VideoConverter library. It has an EventHandler named
ConvertProgress
but I have never used EventHandlers, I was searching for some information on internet, but I still don’t know how to apply it to my application.I tried this :
public static event EventHandler<convertprogresseventargs> _getPercent;
//...
_getPercent += ???
progressBar1.Value = ??
</convertprogresseventargs>I’m stuck there, and I don’t know what to do. Can someone help me ?? Thanks in advance.