Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (100)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8519)

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