Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (60)

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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5171)

  • 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

  • Using ffmpeg with an audio input from System.IO.Stream

    17 juillet 2020, par kevingoos

    So I am creating a project where I need to convert audio comming from azure text to speech.
    
I wanted to use ffmpeg for this, but I am not an expert with all these parameters.
So far I alread got it working where I read from a $.wav file and convert it to an output System.IO.Stream comming from ffmpeg.

    


    But I want to change it that I don't always save a wav file to disk. Instead now I get a System.IO.Stream from azure text to speech, but I have no clue for the params and the documentation is not really clear for me...

    


    var azureAudio = await new AzureSpeechService().Speak(text);

var psi = new ProcessStartInfo
{
    FileName = @"C:\ffmpeg-20200715-a54b367-win64-static\bin\ffmpeg.exe",
    Arguments = "-i pipe:0 -ac 2 -f s16le -ar 48000 pipe:1",
    RedirectStandardOutput = true,
    UseShellExecute = false
};
var ffmpeg = Process.Start(psi);

var inputStream = ffmpeg.StandardInput.BaseStream;

azureAudio.CopyTo(inputStream);

inputStream.Flush();
inputStream.Close();

var outputStream = ffmpeg.StandardOutput.BaseStream;
await SendAudioAsync(client, outputStream);


    


  • swscale/aarch64/rgb2rgb : add neon implementation for rgb24toyv12

    27 août 2024, par Ramiro Polla
    swscale/aarch64/rgb2rgb : add neon implementation for rgb24toyv12
    

    A55 A76
    rgb24toyv12_16_200_c : 36890.6 17275.5
    rgb24toyv12_16_200_neon : 12460.1 ( 2.96x) 5360.8 ( 3.22x)
    rgb24toyv12_128_60_c : 83205.1 39884.8
    rgb24toyv12_128_60_neon : 27468.4 ( 3.03x) 13552.5 ( 2.94x)
    rgb24toyv12_512_16_c : 88111.6 42346.8
    rgb24toyv12_512_16_neon : 29126.6 ( 3.03x) 14411.2 ( 2.94x)
    rgb24toyv12_1920_4_c : 82068.1 39620.0
    rgb24toyv12_1920_4_neon : 27011.6 ( 3.04x) 13492.2 ( 2.94x)

    • [DH] libswscale/aarch64/rgb2rgb.c
    • [DH] libswscale/aarch64/rgb2rgb_neon.S