
Recherche avancée
Autres articles (44)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (6157)
-
Using linux programs within app
15 octobre 2014, par user1503606Just going to ask this question feel free to say its a stupid question.
Is it possible to use a program like ffmpeg within a mobile app i currently use Titanium for app development so it is all written in javascript.
If i was going to go native and learn C objective C would this allow me to execute a program like ffmpeg or compile it into a app to run on the device ?
With a lot of my current apps i normally send/upload a file to my server then run all the file manipulation then download the newly encoded file.
It would be great if you could do this directly on the app in C.
How do people do this.
-
is there any way to change still images to video in php on windows plate form [on hold]
13 juin 2014, par user3548569I have a scenario for creating a video files using different images.
What can I do is, basically I have images and I want create a video file using PHP.
Can any one please suggest the start up point for this ? Have done image capture from video and converting the video using Ffmpeg so I have think of Ffmpeg but, I think it will not allow to create a video.
i need to develop a movie with more then 5 pic. If i added images , then php convert it to movies or video. is there any toll to convert images to video in php on windows ???
thanks -
Merge Multiple Videos using node fluent ffmpeg
5 août 2024, par shyamshyrerequirement is to read all the files in the directory and merge them.
 I am using node fluent-ffmpeg to achieve this.
 First of all reading all the files in the directory appending concatenating the string by adding
.input
.


var finalresult="E:/ETV/videos/finalresult.mp4"
outputresult : It consists of all the files read in the directory.

/*Javascript*/
MergeVideo(outputresult);
function MergeVideo(outputresult){
console.log("in merge video");
var videostring = "";

for(i=1;i<5;i++)
 {
videostring = videostring+".input("+"'"+outputresult[i]+"'"+")";
}
console.log("Video String"+videostring);
 var proc = ffmpeg()+videostring
 .on('end', function() {
 console.log('files have succesfully Merged');
 })
 .on('error', function(err) {
 console.log('an error happened: ' + err.message);
 })
 .mergeToFile(finalresult);
}




It gives the following error :



TypeError: Object .input('ETV 22-02-2015 1-02-25 AM.mp4').input('ETV 22-02-2015
9-33-15 PM.mp4').input('ETV 22-02-2015 9-32-46 AM.mp4').input('ETV 22-02-2015 8-
32-44 AM.mp4') has no method 'on'
 at MergeVideo (D:\Development\Node\node-fluent-ffmpeg-master\node-fluent-ffm
peg-master\examples\demo.js:140:6)
 at Object.<anonymous> (D:\Development\Node\node-fluent-ffmpeg-master\node-fl
uent-ffmpeg-master\examples\demo.js:129:1)
 at Module._compile (module.js:456:26)
</anonymous>



Any help is appreciated.