Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (111)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (8670)

  • How to get rid of iPhone pointer uint8_t warning ?

    18 décembre 2012, par Winston

    I'm using FFMPeg on my iPhone project, but I'm getting a warning when using AVFrame *pFrame, like this :

    AVFrame *pFrame
    uint8_t *data[AV_NUM_DATA_POINTERS];

    ...

    pFrame->data

    This is the warning I'm getting :

    Passing 'uint8_t *[8]' to parameter of type 'const uint8_t *const *' (aka 'const unsigned char *const *') discards qualifiers in nested pointer types

    How do I get rid of this warning ?

    Thank you !

  • Anomalie #2950 : La sauvegarde sqlite plante chez l’hébergeur Free (quelques pistes)

    6 mars 2013, par Gilles VINCENT

    Je soupçonnais l’implémentation du driver pdo_sqlite mais après avoir creusé plus loin je crois que c’est plus simple Dans le cas de la sauvegarde, Pour Free, la vrai erreur se produit plus tard lorsque le driver pdo_sqlite tente de créer les tables - et n’y parvient pas. Voici la requête générée (...)

  • FFmpeg concatenation, no Audio in Final Output

    12 septembre 2016, par user4889724

    I have the following command working in ffmpeg, which adds 1 second of a black frame to the beginning of the video. However, I lose the audio from the original video in the output video. How can I adjust the command to make sure the original audio stays with the final output, or better yet, there is 1 second of "blank" audio at the beginning so it matches the new output video.

    ffmpeg -i originalvideo -f lavfi -i color=c=black:s=1920x1080:r=25:sar=1/1 -filter_complex "[0:v] setpts=PTS-STARTPTS [main]; [1:v] trim=end=1,setpts=PTS-STARTPTS [pre]; [pre][main] concat=n=2:v=1:a=0 [out]" -map "[out]" finaloutputvideo.mp4