Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (6102)

  • Client/Server Video Streaming [on hold]

    7 juillet 2014, par Nawaf Alsrehin

    I want to build client/Server application in order to do video streaming from server (that is holds the video files) to the client (that want to view the video files). In between I should be able to transcode the video stream to fit the clients (PC, tablet, and smart phone) requirements. For example, If I have a flv (680x320, 30 fps, H.264 codes )video file in the server and want to send it to the client that be able to view only mp4 (320x240, 25 fps, MPEG4 codec).

    1) I am wondering if Red5 will work or not because it just allow only FLV clients ?

    2) Can I design my own RTP or RTMP protocols to do this ? If yes, It is doable or not within few weeks

  • My server is constantly downloading a file, and I don't know what it is [closed]

    7 novembre 2023, par fatemeh mojarrad

    I am converting video with ffmpeg and every few hours my server downloads a file and I don't know what it is and I want to be able to identify what file the server is downloading or what package it is updating.
my requirements :
uwsgi
PyMySQL
Flask
metadata_parser
captcha
flask-compress
wget
moviepy
python-dateutil
jdatetime
flask-cors
eyed3
termcolor
tqdm
redis
zeep
nsfw-detector
Pillow
opencv-python==4.6.0.66
tensorflow==2.9.1
opennsfw2
psutil

    


    My server is Linux and my operating system is CentOS 7

    


    I searched and updated the programs, but this happened again

    


  • cannot execute cmd.exe in server

    30 novembre 2012, par Lynx

    I use ffmpeg to grab a thumbnail from video file. To run the, the code need to call the cmd.exe from process.Start(). But when the code deployed in server, there is no thumbnail created and of course the thumbnail destination folder is set to read/write permission.
    So i assume it not authorized to access/execute the cmd.exe in server(shared server), after googled the problem.
    But i still cannot find a solution on this.
    Or maybe can i just copy the cmd.exe from my local machine and and include it web app so i can run it from the cmd.exe that i copied not from server cmd.exe. If this would work, how to do it ?

    string thumbargs = "-i \"" + videofile + "\" -s 60*25 -ss 00:00:00 -vframes 1 -f image2 \"" + thumbname + "\"";

    Process process = new Process();

    process.StartInfo.FileName = Server.MapPath("~\\ffmpeg\\bin\\ffmpeg.exe");
    process.StartInfo.Arguments = thumbargs;

    process.StartInfo.UseShellExecute = false;
    process.StartInfo.RedirectStandardError = true;
    process.StartInfo.CreateNoWindow = true;
    process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

    try
    {
        process.Start();
        //string output2 = process.StandardError.ReadToEnd();
        //process.WaitForExit();
        if (process != null)
        {
             process.Close();
        }
    }

    catch(Exception ex)
    {
       this.lblMessage.Text = ex.Message.ToString();
    }