
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (26)
-
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 (...)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (5296)
-
doc : add basic documentation for libdav1d
20 mai 2019, par James Almer -
dsicinav : Clip the source size to the expected maximum
19 juillet 2013, par Luca Barbato -
FFMPEG not “cutting” as expected in Android
30 décembre 2020, par Anees UI referred FFMPEG not "cutting" as expected to split video in chunks in below format :


00:00:00 - 00:00:01


00:00:01 - 00:00:02


00:00:02 - 00:00:03


00:00:03 - 00:00:04


00:00:04 - 00:00:05


Here is the command i used :


String[] cmd1 = new String []{"-ss", "00:00:00.000", "-i", inputVideoUrl, "-t", "00:00:01.000", "-c:v", "libx264", "-strict", "-2", outputPath};

String[] cmd2 = new String []{"-ss", "00:00:01.000", "-i", inputVideoUrl, "-t", "00:00:02.000", "-c:v", "libx264", "-strict", "-2", outputPath};

String[] cmd3 = new String []{"-ss", "00:00:02.000", "-i", inputVideoUrl, "-t", "00:00:03.000", "-c:v", "libx264", "-strict", "-2", outputPath};

String[] cmd4 = new String []{"-ss", "00:00:03.000", "-i", inputVideoUrl, "-t", "00:00:04.000", "-c:v", "libx264", "-strict", "-2", outputPath};

String[] cmd5 = new String []{"-ss", "00:00:04.000", "-i", inputVideoUrl, "-t", "00:00:05.000", "-c:v", "libx264", "-strict", "-2", outputPath};



And i use this library :
https://github.com/teanersener/mobile-ffmpeg


implementation 'com.arthenica:mobile-ffmpeg-full-gpl:4.2.2.LTS'



When i execute i get the duration starting from beginning of the video all the time. Please suggest what am i doing wrong, i searched and tried changing commands but nothing works.


00:00:00 - 00:00:01


00:00:00 - 00:00:02


00:00:00 - 00:00:03


00:00:00 - 00:00:04


00:00:00 - 00:00:05


Let me share another example to explain my requirement :
inputVideoUrl contains a video of any length(ex : 5min)
I want to cut a user selected portion of it(ex first one minute) in the form of 5 split videos.


split 1 : 00 sec - 12.0sec


split 2 : 12.1 sec - 24.0sec


split 3 : 24.1 sec - 36.0sec


split 4 : 36.1 sec - 48.0sec


split 5 : 48.1 sec - 60.0sec


And later i will provide these split videos to a player playlist.