Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (73)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 2013

    Puis-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, par

    Cette 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 user3193123

    For 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
    lavc/dds : replace rint by lrint
    

    avoids float to int cast.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/dds.c
  • Directly response video to the client for download when ffmpeg cutting the video

    7 mars 2023, par web disiner

    I 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.&#xA;all things working fine but ffmpeg cutted video save to working directory.

    &#xA;

    Below is my code..

    &#xA;

    const child_process= require("child_process")&#xA;&#xA;const cutting =async()=>{&#xA;    ffmpeg = child_process.spawn(&#x27;ffmpeg&#x27;, [&#xA;&#xA;        "-i", /video.mp4,&#xA;         "-ss", "00:02:20",&#xA;         "-to","00:02:50",&#xA;         "-c:v", "copy", &#xA;         "-c:a", "copy", &#xA;         "output3.mp4"&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;    ])&#xA;    ffmpeg.stderr.on(&#x27;data&#x27;, function(data) {&#xA;            console.log(&#x27;ffmpeg stderr data = &#x27;&#x2B;data );&#xA;      });&#xA;&#xA;}&#xA;

    &#xA;

    This is image of working directory

    &#xA;

    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.

    &#xA;

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

    &#xA;