
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 (100)
-
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 (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (15122)
-
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.