Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (63)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 ;

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8940)

  • Using node cli tool as a library (trimp3)

    1er août 2017, par George Welder

    I have found the following library, which I would like to use in my own nodejs file : https://github.com/kyr0/trimp3

    However, it is a cli tool, and I would like to use it as a library.

    How could I use this in my own nodejs code, and use it programmatically, (that is, without executing it as a cli tool from my nodejs file, but straight in node).

    I hope you understand what I mean.

  • Added option to group files in one XHR request based on their file size and the upload file size limit

    15 novembre 2013, par ottens
    Added option to group files in one XHR request based on their file size and the upload file size limit
    

    If your upload limit is say 1MB and you have 100 files of 20Kb you could set the limitMultiFileUploads to 50 to minimize requests. However is there is one 30kb file the batch containing that group will fail. So I coded an uploadSizeLimitMultiFileUploads option that will calculate the max number of files that fit in one request based on a set upload size. I added a 512 bytes overhead for each file for the calculations to be on the safe side. Hope you find these useful, it is very useful if you want to upload 1000s of small files. Thanks

    Signed-off-by : Maarten Ottens <m@maartenottens.com>

  • Running ffmpeg through a website

    18 novembre 2013, par Andrew Simpson

    I have a website and it allows Users to download images as a video clip.

    They can choose from say mp4, avi, ogg etc.

    I use ffmpeg via the Process Class in C#/Asp.net 4.0 to execute the conversion tool.

    I have noticed in testing that if I forcefully abort this conversion like stopping IIS, ending the wp3 process in task manager) that after a while of doing this if I then look at task manager on the Web Server there are many instances of FFMPEG which have not closed down properly.

    What I would ideally like to do is kill any processes that maybe lingering for that SPECIFIC User (not any other Users/Session) and then start the conversion tool.

    Is it possible to manage/control the FFMPEG process for that User/Session or should I be looking at a queuing system that enables only 1 User at 1 time should be able to use this conversion tool ?

    I hope I made this sound clear ?

    I could post the code that shows how the Process/ffmpeg is started in C# but I cannot see how this would aid this question.

    Thanks