Recherche avancée

Médias (91)

Autres articles (72)

  • 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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (9224)

  • How to edit video (cut some scenes) without increasing the video's size

    18 février 2016, par 123iamking

    [Introduction]

    I have a video : Input.mp4 - length : 29 min 6 sec - size : 120 MB

    I use Microsoft Movie Maker 2012 (Movie Maker is included in the Windows Essentials 2012 program suite), to cut some boring scenes and keep the cool scenes and I get the video : Output.mp4 - length : 15 min 22 sec - size : 155 MB.

    And it’s take a long time to create the Output.mp4 and the size is ridiculously increased. I can’t use this kind of software anymore, I need to create a new software to serve my purpose.

    [Question]

    Is there anyway with C# .Net to simply cut and merge video without increasing the video’s size and have to be fast ?

    [What I have tried]

    I intend to use ffmpeg to cut the clip and merge the clip and I found something about cut video here , but the console said something about "Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future." - should I still use this ?

    Should I use ffmpeg or there’s better way to do this.

  • trimming video using ffmpeg corrupts output video stream

    6 décembre 2022, par I Z

    I am using ffmpeg to cut up a long video into sections. Using this command :

    


    ffmpeg -i "long.mp4" -ss 00:38:25 -to 01:01:11 -c copy "section.mp4" 


    


    I extracted a couple of different consecutive sections and they are fine. But then I cut out another one and its video stream is bad : just a few static frames are shown. Removing -c copy did not help. What am I doing wrong ? TIA

    


  • FLutter : Read frames fom video, process it, put it to output video

    26 juin 2023, par RAITON

    I have video record and I need to process frames of this video, and for each frame/image write random integer on top left or right of image ( the random integer is only example I will replace this random int by my logic )

    


    something like :

    


    // 1. extract list of frames from video
// 2. process images/frames and add random integer in top left or right of image
// 3. Write output Video with new Frames contain the random integer 


    


    can someone help to have code example to resolve this by using ffmpeg package or any other package ?

    


    Thanks