Recherche avancée

Médias (91)

Autres articles (74)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (4596)

  • Revision 4d9b9fa508 : Neon match to vp8 temporal denoiser fix Now match the "C" version of "Fix to re

    28 mai 2014, par Scott LaVarnway

    Changed Paths :
     Modify /vp8/encoder/arm/neon/denoising_neon.c



    Neon match to vp8 temporal denoiser fix

    Now match the "C" version of "Fix to reduce block
    artifacts from vp8 temporal denoiser."
    (see change id Id9b56e59e33f3c22e79d2f89f763bdde246fdf3f)

    Change-Id : I99e569bb6af4ae3532621127e12bf917a48ba08e

  • Revision 357495c2df : Merge "Neon match to vp8 temporal denoiser fix"

    6 juin 2014, par Scott LaVarnway

    Merge "Neon match to vp8 temporal denoiser fix"

  • Call remote cmdlet (ffmpeg) via Invoke-Command : "... not recognized as the name..."

    7 décembre 2016, par sk904861

    I’m trying to call ffmpeg on a remote transcoding server via Powershell :

    $session = new-pssession -computername transcodingserver
    Invoke-Command -session $session -scriptblock { powershell ffmpeg }

    ffmpeg is correctly installed on the remote server and can be run there, but the remote call results in an error :

    ffmpeg : The term 'ffmpeg' is not recognized as the name of a cmdlet, function, script file, or operable program.
       + CategoryInfo          : NotSpecified: (ffmpeg : The te...rable program. :String) [], RemoteException
       + FullyQualifiedErrorId : NativeCommandError
       + PSComputerName        : transcodingserver

    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + ffmpeg
    + ~~~~~~
       + CategoryInfo          : ObjectNotFound: (ffmpeg:String) [], CommandNotFoundException
       + FullyQualifiedErrorId : CommandNotFoundException
    NotSpecified: (:) [], RemoteException

    It seems to me like if the machine, I run Invoke-Command on, tries to run ffmpeg, which is not installed there. What do you have to do, to run ffmpeg on a remote server ?