
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (59)
-
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. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (4579)
-
Moviepy Making a CompositeVideoClip of two concatenate_videoclips
16 avril 2018, par Max BetterWorking with the Moviepy lib and I’ve been beating my head off a wall with this last step for a while.
GifClips = concatenate_videoclips(TheGIFs, method='compose')
TextClips = concatenate_videoclips(TheTexts, method='compose')I’ve written both of these to separate files and they look fine. But I’m having a problem getting them to combine properly.
I’m trying :
FinishedClips = CompositeVideoClip([GifClips, TextClips], size=(1920,1080))
It has the audio from TextClips and shows the GifClips but the text isn’t visible. It did show when written alone without the composite.
It does work if I combine GifClips with a single TextClip but this doesn’t work when I need text clips to run one after another.
I could run a CompositeVideoClip with every single TextClip and a part of the GifClips and then concatenate them all together but that doesn’t seem like the neatest way of doing this. My guess is there’s a fairly obvious argument here somewhere but looking through the docs and examples I’m struggling so far.
Any suggestions on how I could get the TextClips clip to show up properly in a composite would be much appreciated.
-
In Android, how can I display mp4 files captured by Android itself without having "sorry this video cannot be played" trouble ?
31 octobre 2013, par fercisI am new in Android and have an application as follows :
1) I record videos by my phone (Samsung Galaxy Note 2).
2) I send video files (mp4) to a cloud (Dropbox in my example) without any change in encoding. And store the URL of the sent video on the cloud.And when the application is in view video mode,
3) I want to view the videos with the URL (which may be captured by other client Applications) in videoview.I cannot view the videos that are captured by the phone itself. There are many discussions in SO about the encoding compatibility (H 263, H 264 etc.).
However, I could not manage to find a way to CHANGE the encoding of the video to be recorded by the application. Camera.Parameters class has the encoding information only for pictures. The quality is not important, I only want to capture videos which can be directly played in the same Android application without any change.
-
How to build ffmpeg executable binary for Android ?
22 février 2016, par Én Xinh Lung LinhI’m struggling how to build an executable binary of ffmpeg for Android command.
I am very new to ffmpeg which I need to extract audio from video files such as mp4.I followed a tutorial here to build ffmpeg binary : http://www.roman10.net/how-to-build-ffmpeg-for-android/
I dont need *.so file to use in NDK but only an executable binary.
I tried to enable :
--enable-ffmpeg
in shell script build. It yielded a ffmpeg file too. Especially, the file size is small with around 2M. However, I am unable to use it in android execution as following :p = Runtime.getRuntime().exec("/data/data/example/ffmpeg -i /sdcard/test.mp4 -vn -acodec copy /sdcard/test.aac");
The above executed very quickly and of course it didn’t give any result.
I continued searching and found an example here : https://github.com/guardianproject/android-ffmpeg-java
The ffmpeg binary in the project is nice, I can run some command with desired output. However, some conversions to mp3 format gets failed because probably it lacked libmp3lame when building. Specially,
ffmpeg
is heavier than mine quite much, it is about 15M. I don’t know how they build the binayr.I’m looking for is a proper guide which I can build with arbitrary options such as
libmp3lame
,libshine
. I get stuck atm4a
tomp3
conversion.Everybody who has experience in ffmpeg, please guide me. Thank you !