
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 (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (12550)
-
Enable armv6 FFmpeg crashed under Android NDK
3 janvier 2014, par Tim DingI compile the FFmpeg under the armv5, it can work well on Android NDK r5, but I compile the FFmpeg under the armv6, it can success, but when I call the function av_new_stream, it is crashed, and it is crashed on the libavutil.c/rational.c :
if(num<=max && den<=max){
a1= (AVRational){num, den};
den=0;
}Dose anyone encounter this problem ?
The LOCAL_FLAGS
include $(CLEAR_VARS)
LOCAL_ARM_MODE := arm
LOCAL_MODULE := ffmpeg
LOCAL_CFLAGS := -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPIC -std=gnu99 -march=armv6Is there something error here ?
-
Video is not playing in default player of android device
6 janvier 2014, par GururakI am using ffmpeg command for padding a video. After padding video, video is becoming bigger than the screen size of android device. Because of the bigger size video is not playing in videoview. It can be played by scaling padded video to screen size of the device. But i don't want to scale the video.Finally my question is "How to play a video of bigger size than the screen size in android in video view" ?
-
Android merging videos by frames
6 janvier 2014, par amitI want to develop video merge application in android. I am able to merge two videos but if the video size is more the device gets hanged .So I want to get frames of input video2(around 15 sec.) and merge it to video1. Any one have an idea how to get the frames from video. Is there direct native method available for that to get frames ?.