
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (90)
-
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 (...) -
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 -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (12184)
-
configure : Add a SONAME entry for the android target
29 octobre 2015, par Luca Barbato -
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