Recherche avancée

Médias (91)

Autres articles (40)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To 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 (5037)

  • fluent ffmpeg => how to trim and concate parts of video into one output file without writing many output files. Make a most efficient solution

    30 avril 2024, par Shreyansh Gupta

    I'm currently working on a online video website and i need to make a quick preview of videos using random timestamps and duration of the video.

    


    Suppose the video is of 15 min then i want to cut out some parts like ->

    


    1. from 00:00:40 take out next 2s 
2. from 00:01:20 take out next 2s 
3. ... and so on until the new video becomes 15s


    


    How can i do this with fluent-ffmpeg in the nodejs project

    


    Can i get the most efficient way of doing this without writing many output files and then concating them separately and removing then later

    


    Only concating the trimmed videos in one output file and save when it is done.

    


    I also came through a solution that uses complex filters but i don't know how to use it

    


       ffmpeg("video.mp4")
  .complexFilter([
    ....// some filters here

  ])
  .on('end',  function () {
    console.log('files have been merged and saved.')
  })
  .on('error',function (err){
    console.log(err)
  }
  .saveToFile("output.mp4")```


    


  • -preset veryslow not working with -vcodec copy using ffmpeg

    27 février 2023, par Amit Hapase

    I am new to ffmpeg. I am usingffmpeg command to trim x265 mkv video and compress it as much as possible without losing quality. I am using -preset option with veryslow argument to make file smaller in size. I am also using -vcode copy and -acodec copy options with that.

    


    Input file info :
Name : movie.mkv
Size : 4.42 GB
Length : 02:42:01

    


    
ffmpeg \

-i movie.mkv \

-ss 01:21:46 \

-t 00:05:27 \

-crf 0 \

-vcodec copy \

-acodec copy \

-preset veryslow \

song.mkv



    


    The above command completing it's execution within a second and the size of song.mkv file is 150 MB.

    


    I don't think that it should complete the process within a single second with -preset veryslow argument. The -preset veryslow argument is suppose to take longer and make better compression ?

    


  • Evolution #4180 : Cacher les blocs Forums et Pétitions lorsque ces fonctionnalités ne sont pas uti...

    8 octobre 2018, par tcharlss (*´_ゝ`)

    Je veux bien m’en occuper parceque ces 2 blocs me sortent par les trous de nez également :)

    Pour les forums, il y a bien un formulaire de config où on choisit les objets sur lesquels les activer, donc il suffit d’ajouter cette vérification dans le pipeline afficher_config_objet (qui ne regarde pour l’instant que l’autorisation de modérer).

    En revanche pour les pétitions, je n’ai rien vu s’y rapportant (pas d’option pour activer/désactiver de façon globale, pas de formulaire pour activer par type d’objet dans le privé). Tu as vu ça où Dimitri ?
    Dans ce cas il faudrait ajouter un formulaire de config pour activer par type d’objet comme pour les forums (avec tout de coché par défaut pour ne rien casser je suppose). Mais je ne vois pas trop où le rajouter : dans Options avancées ou Contenu du site ?