
Recherche avancée
Autres articles (76)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (4635)
-
Java 8 does not wait for ffmpeg process output buffer read completion
13 février 2018, par Nitishkumar SinghWe need to create multiple clips from video, to do so we are using ProcessBuilder to create a new processes, Please fine code below
Process clipProcess = new ProcessBuilder("bash","-c",
"ffmpeg -i input.mp4 -ss 0:36:00.000 -codec copy -t 0:03:00.200 -threads 0 -y output.mp4").start();
clipProcess.waitFor();We need to perform some operation on the clips, as the processing get’s done and file is completely written to disk. But program returns control to next statement, even though file is not completely written to disk. Any suggestion, what I am doing wrong ?
Edit :
We are able to handle clips generated from any video below 45 minutes, but after that generated clips does not completely get written to disk before processing -
Seek and cut mp4 http stream on the fly with mp4Parser java library
27 septembre 2016, par xymanIs it possible to create new mp4 file(which will be just one small video segment of full length mp4 file) from mp4 http stream without downloading the whole mp4 file to disk and feeding it to mp4Parser. If any other stable java library exist which could do the sam job please point me to it.
I know it can be done with ffmpeg as explained in this post but i want to avoid using full feature heavy library(cutting the mp4 file doesn’t involve transcoding the video, this operation just repacks the mp4 file) for just cutting the mp4 file.
ffmpeg -ss 00:01:00.000 -i "http://myfile.mp4" -t 00:02:00.000 -c:a copy -c:v copy output.mp4
-
avcodec/mediacodecdec_common : warn when PTS is missing
5 septembre 2019, par Aman Gupta