
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (95)
-
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. -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
Sur d’autres sites (6719)
-
Build ffmpeg for android in smaller size with specific features
13 juillet 2021, par Anas AnsariI am using this command to trim out segments of a video in android app using ffmpeg


-ss startFrom -i inputVideo-f segment-segment_time durationOfEachSegment -reset_timestamps 1 outputPath


For this I am using this library https://github.com/tanersener/ffmpeg-kit/tree/development/android


But it has increased my app size a lot


I already tried deleting x86 lib and it indeed decreased my app from 60 mb to 34 mb , but i know still it can be decreased to a much extent


I want to know how to build ffmpeg library with enough features to fullfil my needs and which libraries i need to include in my build


-
compression android video trimmer ffmpeg Exoplayer2 [closed]
6 mars 2024, par andrew cumminsI'm trying to compress the video trimmed android video


I have some android code from github that I've been working on. The code is a video trimmer in enter image description hereAndroid. However I'm trying to compress the video after the video is trimmed. Here's the source code


https://github.com/a914-gowtham/android-video-trimmer


I was able to modify the timeline that's generated with a set duration minimum similar to a whatsapp status, with a set max at 10 sec and max 90 seconds


// TrimType.MIN_MAX_DURATION TrimVideo.activity(videoUri) .setTrimType(TrimType.MIN_MAX_DURATION) .setMinToMax(10, 90) //seconds .start(this,startForResult);


Now all is is working fine but I'm trying to compress the file after the video is trimmed and add an overlay.


Any ideas would be helpful


-
Stream a sequence of images from C++ to Android
1er août 2015, par PhiliesI’m receiving a sequence of image raw data (32bit, bmp, video) on my C++ server and I want to display these images on my Android device (MediaPlayer).
I’ve installed ffmpeg on my c++ server and tried this ffmpeg command, but I don’t receive anything (tested with VLC player app on Android), because I don’t know how to specify the input.
ffmpeg -an -f rawvideo -vcodec rawvideo -pix_fmt rgb32 -i -vcodec libx264 -tune zerolatency -preset ultrafast -bsf:v h264_mp4toannexb http://192.168.1.20:8090/test.mp4
Does anyone have an idea how to achieve this or have already experience to achieve that ?