
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (73)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (8509)
-
I am able to write certain metadata information to a .m4v file but not all using ffmpeg
14 janvier 2014, par user3193123For example use this code
ffmpeg -i avatar.m4v -metadata title="Avatar" -metadata artist="James Cameron" -metadata description="Long Long Ago…" acodec copy -vcodec copy -y /Users/Anand/Desktop/anand.m4v
Works perfectly fine !!!
But i am not able to write metadata information such as Rating, Actors(Cast), Producers etc.. because i dont know the keywords or the keywords don't exist ?
Any body know the keyword for them or can't i write them ?
-
lavc/dds : replace rint by lrint
26 décembre 2015, par Ganesh Ajjanagadde -
Directly response video to the client for download when ffmpeg cutting the video
7 mars 2023, par web disinerI am bulding a web application using Node.js with Express framework. That simply cut the video and send to the client browser as a response for download. For cutting a video i use FFmpeg tool.
all things working fine but ffmpeg cutted video save to working directory.


Below is my code..


const child_process= require("child_process")

const cutting =async()=>{
 ffmpeg = child_process.spawn('ffmpeg', [

 "-i", /video.mp4,
 "-ss", "00:02:20",
 "-to","00:02:50",
 "-c:v", "copy", 
 "-c:a", "copy", 
 "output3.mp4"






 ])
 ffmpeg.stderr.on('data', function(data) {
 console.log('ffmpeg stderr data = '+data );
 });

}



This is image of working directory


Now i want when
**ffmpeg cutting the video it directly send chunks of video to the client for download **
without saving it in working directory or server where my code is hosted.

How can i do this ? which approch will useful for this ?
Anyone help me. much appreciated
Thanks