Recherche avancée

Médias (91)

Autres articles (97)

  • 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 tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • Revision 999f31f71c : Move documentation file list to relevant make file Change-Id : I2fe3095c4eb60233

    16 novembre 2012, par Johann

    Changed Paths : Modify /libs.mk Modify /vpx/vpx_codec.mk Move documentation file list to relevant make file Change-Id : I2fe3095c4eb60233f00830d4124583ce7a64caa4

  • FFMPEG what is the funcition combine WAV file and Video File ?

    4 janvier 2012, par ALexF

    i use Qt & opencv record video, QAudioInput for record audio —> wav file, i want combine they into 1 video file, every body talk me should use FFMPEG for combine they, i research very much but i cant found Funcition or class implement it, please help me

    thanks very muchs

    i write it on windows & macos

  • Batch File Removing File Extension

    29 décembre 2013, par scsa20

    So I've made a batch file to help me extract the video only from an MKV file using MKVToolNix and then re-encode the h264 file to an MP4 for video editing using mp4box. It works really well, this is how it looks :

    for %%a in (*.mkv) do "C:\Program Files (x86)\MKVToolNix\mkvextract.exe" --ui-language en tracks "%%a" 0:"%Sources%\h264\%%a.h264"

    for %%a in (*.h264) do mp4box.exe -add "%%a:fps=23.976" "%Sources%\%%a.mp4"

    Problem is, the first line would extract the file with .mkv.h264 then when I go to encode the file with mp4box to a MP4 file it comes out as .mkv.h264.mp4.

    Is there a way to code it so it'll drop the first 2 extensions and leave only with the .MP4 ? Searched around and can't find my answer for something that is after the fact (all the ones I've found is for removing the last extension which doesn't help me).

    Thank you for any help.