Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (32)

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

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

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

  • avcodec/videotoolboxenc : fix mutex/cond leak in error path

    11 juin 2018, par Thomas Guillem
    avcodec/videotoolboxenc : fix mutex/cond leak in error path
    

    The leak could happen when the vtenc_create_encoder() function failed.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavcodec/videotoolboxenc.c
  • vulkan : take refs of frames using the regular buffer ref path

    1er mars, par Lynne
    vulkan : take refs of frames using the regular buffer ref path
    

    This simplifies the code, reduces allocations, and critically, does
    not store references of frames, along with references to hw_frames_ctx.
    The issue was that storing refs to frames while transferring stored
    refs to hw_frames_ctx of frames, and so created a circular dependency,
    which caused the Vulkan device to never be terminated.

    This only stores what it strictly needs as a dependency, and enables
    the frames context to be freed, even while doing asynchronous transfers.

    • [DH] libavutil/vulkan.c
  • FFmpeg concat with absolute path

    23 septembre 2016, par Vadim Korzun

    I try to concatenate two videos using ffmpeg I use that wrapper : wrapper.
    According docs I use this commands :

    ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
    ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
    ffmpeg -i concat:"intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc output.mp4

    After two command I got two files :

    /storage/emulated/0/recorder/test1_convert.ts /storage/emulated/0/recorder/test2_convert.ts

    But when I execute the third command I got failure : log message : concat:"/storage/emulated/0/recorder/test1_convert.ts|/storage/emulated/0/recorder/test2_convert.ts": No such file or directory

    I suppose something wrong with syntax absolute path. This is full my third command :

    enter image description here