Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (55)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7982)

  • Recording slow-motion video

    20 janvier 2016, par SharpAffair

    We have a camera that records videos with high FPS rate - 163.

    To capture from the camera in C#, we use AForge.Video library. The capture works fine.

    For saving the video to a file, we use AForge.Video.FFMPEG.VideoFileWriter as follows :

    FileWriter.Open("test.avi", eventArgs.Frame.Width, eventArgs.Frame.Height, 163, VideoCodec.MPEG4, 5000000);

    What we’re trying to figure out is how to use the VideoFileWriter to produce slow-motion video.

    Assuming we have to do something with frame rate of the video file output ? If so, what should we set the frame rate to ? And if not, what’s the correct approach to get the slow-motion output ?

    Thanks !

  • decode mpeg2-ts frame from socket to RGB buffer

    23 novembre 2019, par DevAndroid

    I’m trying to make a program that record my phone screen on my PC.
    For that I made a simple client/server socket TCP. My Android phone records the screen and encapsulates an H.264/AAC data in MPEG2/TS and send it over socket continuously.

    PC side, I’m using QT, I receive the stream on this function :

    void Server::processBinaryMessage() {
       QTcpSocket *pClient = qobject_cast<qtcpsocket>(sender());
       QByteArray byteArrayReceived = pClient->readAll();

       QFile f("record.ts");
       if (f.open(QIODevice::WriteOnly | QIODevice::Append)) {
         f.write(byteArrayReceived);
         f.close();
       }
    }
    </qtcpsocket>

    I wrote each QbyteArray to File to see if it’s correct and played with VLC, it works good.
    But I would like to decode those frames from memory using avformat.

    I’m on QT 5.12.1 with msvc2017_64 compiler.

    Thanks for help.

  • arm64 : convert dcadsp neon asm from arm

    28 novembre 2015, par Janne Grunau
    arm64 : convert dcadsp neon asm from arm
    

     2% faster dts decoding overall.

    cortex-a57 cortex-a53
    dca_decode_hf_c : 474.8 1659.9
    dca_decode_hf_neon : 225.2 301.1
    dca_lfe_fir0_c : 913.2 1537.7
    dca_lfe_fir0_neon : 286.8 451.9
    dca_lfe_fir1_c : 848.7 1711.5
    dca_lfe_fir1_neon : 387.1 506.4

    • [DBH] libavcodec/aarch64/Makefile
    • [DBH] libavcodec/aarch64/dcadsp_init.c
    • [DBH] libavcodec/aarch64/dcadsp_neon.S
    • [DBH] libavcodec/dcadsp.c
    • [DBH] libavcodec/dcadsp.h