
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (8913)
-
Using FFmpeg with Android-NDK
4 février 2014, par iSunI want to use
FFmpeg
withAndroid-NDK
and I am very basic in this section, I need some help and I research about this topic before on the net, but got no satisfactory solution.1 - How can I use
FFmpeg
through Windows OS. (I do not want to use Ubuntu, please do not suggest.)2 - How can I inset
FFmpeg
commands viaNDK
?Last notice : I using
android-ndk-r7b
andCygwin
.Any suggestion would be appreciated.
-
How do I make a C# win form program that breaks a video down to frames, then put those frames back together to make a video ?
30 juillet 2015, par Atom ScottFirst, I’m fairly new to C sharp so I’m looking for a thorough and easy to understand answer.
How do I make a C# win form program that breaks a video down to frames, then puts those frames back together to make a video ?
I also want to be able to select which frames to extract by setting an interval time. For example, extract frames that are one second apart.
Is this possible, I have done some research but I don’t understand how to use the codes displayed on the following websites.Supposedly code to breakdown video into frames. However I do not know where to put it. Do I make it the event for a button or something. From my own research I am guessing this uses ffmpeg. But I’m not exactly sure how to use ffmpeg, I have tried downloading Aforge, and use Aforge.Video.ffmpeg. But I’m stuck there.
http://www.researchgate.net/post/Has_anyone_code_in_C_to_read_video_file_and_split_it_into_frames[^]Code for making a video from images, it looked promising so i tried to copy and paste it visual studio. However the line using BytescoutImageToVideoLib ; has an error asking me whether I am missing a reference. What reference am I missing ?
http://bytescout.com/products/developer/imagetovideosdk/imagetovideosdk_first_step_with_visual_c_sharp_net.html[^]I also noticed that there was a page on code project for something similar to this, but the downloadable demo project didn’t work at all. I didnt see the point in spending time on something where the end product is broken.
http://www.codeproject.com/Articles/13237/Extract-Frames-from-Video-FilesAny help is greatly appreciated.
-
Android : What should I use when making a native video player ?
16 juillet 2012, par jtamCurrently I am doing research for a native video player project, initialy I tried to use ffmpeg as the decoder and return the Byte to java, then I use View::onDraw with Canvas to display frames. Unfortunately, the performance of this method is not good, so I am wondering whether there is anything else that I could use to display frames other then passing to java ?
Also, other than display the frames, how can I play sound using C/C++ with NDK ?
Thanks.