Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (59)

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

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (6341)

  • DirectShow / x264 / AviSynth and Windows Server 2008 SP2

    15 novembre 2011, par Tim

    I'm having a hard time getting AviSynth to open video files on Windows Server 2008 SP2 (32 bit). I'm aware of the sound card issue, right now I'm using Audio=false. I've tried installing the below, but I always get the error "No combination of filters could be found to render the stream". I'm using DirectShowSource, but I don't have to ... I'm open that can open most formats your average Windows 7 machine can handle.

    I've installed :

    • "Desktop Extensions" - which installed Media Player and codecs
    • haali media splitter and ffdshow
    • Windows Media Services (for streaming, this supposedly had the mpeg codecs, but it doesn't) Windows Essentials Media Codec Pack
    • K-Lite Codec Pack Full VLC
    • QuickTime Tried copying mpeg.dll codecs from 32 bit Windows 7 to Server and regsvr32'ing them, but get error
    • Tried copying *.AX filters from 32 bit Windows 7 to server and regsvr32'ing, but still get AVS error

    AVS Script :

    • video0 = DirectShowSource("video0.avi", fps=30, pixel_type="RGB24", Audio=false)
    • video1 = DirectShowSource("video1.avi", fps=30, pixel_type="RGB24", Audio=false)
    • Dissolve(video0, video1, 30)

    Command Line :

    • x264 test.avs -o test.mp4 —bframes 3 —ref 3 —vbv-maxrate 2500 —vbv-bufsize=25000 —level 40 —threads

    AVS Error :

    • avs [error] : "No combination of filters could be found to render the stream"

    Has anyone gotten this working on Windows Server ? If so what filters codecs or other setup do I need ?

    Thank you for the time.

  • Revision 06e4f825af : Fix an issue in motion vector prediction stage The previous implementation stop

    7 janvier 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_rdopt.c



    Fix an issue in motion vector prediction stage

    The previous implementation stops motion vector prediction test when
    the zero motion vector appears for the second time. This commit fixes
    it by simply skipping the second time check on zero mv and continuing
    on to next mv candidate.

    It slightly improves stdhd in speed 2 by 0.06% on average. Most static
    sequences are not affected. A few hard ones, like jet, ped, and riverbed
    were improved by 0.1 - 0.2%.

    Change-Id : Ia8d4e2ffb7136669e8ad1fb24ea6e8fdd6b9a3c1

  • Revision 1bb11781e2 : Rework idct8x8_10 SSE2 implementation This commit optimizes the SSE2 implmentat

    3 janvier 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/common/x86/vp9_idct_intrin_sse2.c



    Rework idct8x8_10 SSE2 implementation

    This commit optimizes the SSE2 implmentation of idct8x8_10. It exploits
    the fact that only top-left 4x4 block contains non-zero coefficients,
    and hence reduces the instructions needed.

    The runtime of idct8x8_10_sse2 goes down from 216 to 198 CPU cycles,
    estimated by averaging over 100000 runs. For pedestrian_area_1080p 300
    frames coded at 4000kbps, the average decoding speed goes up from
    79.3 fps to 79.7 fps.

    Change-Id : I6d277bbaa3ec9e1562667906975bae06904cb180