Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (52)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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 (...)

Sur d’autres sites (11722)

  • How can dcraw take image from stdin ?

    25 juillet 2018, par Metin Akkın

    dcraw -a -q 3 -o 0 -e -w -v -I < a.nef I’m trying this code output file ppm is dark.I cant find a solution,please help me

  • Alternative to FFMpegCore ? Combine pngs into a video

    28 novembre 2023, par HelloWorld

    I have a scenario where I want to combine a list of images into a video. I see FFMpegCore is a solution, however, I have limitations to the software I can download onto a private network and need a solution that does not require installation of software.

    &#xA;

    Repo to the nuget package of FFMpegCore : https://github.com/rosenbjerg/FFMpegCore

    &#xA;

    class Main&#xA;{&#xA;   public static void Main(string[] args)&#xA;   {&#xA;      string[] files = Directory.GetFiles("some path to the png directory");&#xA;&#xA;      // Take this list of files and generate a video from this&#xA;      // Example of FFMpegCore would be this&#xA;      _ = FFMpeg.JoinImageSequence(output: @"newMp4.mp4", frameRate: 30, images: files);&#xA;   }&#xA;}&#xA;

    &#xA;

    I want to achieve something like this in .NET Core (not Framework).

    &#xA;

    I tried FFMpeg and got an exception thrown due to not having the FFMPeg executable installed (which I am out of scope to do so, an organization policy)

    &#xA;

  • Mixing audio stream and copy video

    23 avril 2014, par lukas

    I need to implement two features :

    1. replace the audio in the movie
    2. mix the current audio with a new one

    Solution for 1 :

    ffmpeg -i music_url -i video_url -codec copy -y -shortest output_video

    Solution for 2 :

    ffmpeg -i video_url -i music_url -filter_complex amix=duration=shortest -y output_video

    But there are a few problems with 2nd :

    • Video is lower quality
    • audio is cut the the shortest one, but video stays the same
    • takes longer that copy streams

    Any hints ?

    EDIT :

    ffmpeg -i vid -i music -filter_complex amix=duration=shortest -shortest -y out_v

    Seems it’s not possible to stream copy video and filter audio. Need to figure out how to keep the video with the same quality, because the default behaviour lowers it.