
Recherche avancée
Autres articles (57)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne 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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8321)
-
Anomalie #2032 : Pb ajout d’un document distant lors de la création d’un article
20 avril 2011, par gvincent -Idée : ne pas permettre de la télécharger à cette étape (tout comme la suppression du document qui n’apparait que lorsqu’on édite un article)
-
avformat/framecrcenc : print basic side data information again
11 mai 2021, par James Almeravformat/framecrcenc : print basic side data information again
This partially reverts c6ae560a18d67b9ddaa25a0338b7fb55e3312e57.
Signed-off-by : James Almer <jamrial@gmail.com>
- [DH] libavformat/framecrcenc.c
- [DH] tests/ref/fate/copy-trac3074
- [DH] tests/ref/fate/cover-art-mp3-id3v2-remux
- [DH] tests/ref/fate/gapless-mp3
- [DH] tests/ref/fate/id3v2-priv-remux
- [DH] tests/ref/fate/matroska-mastering-display-metadata
- [DH] tests/ref/fate/matroska-spherical-mono-remux
- [DH] tests/ref/fate/matroska-vp8-alpha-remux
- [DH] tests/ref/fate/mov-cover-image
- [DH] tests/ref/fate/mxf-d10-user-comments
- [DH] tests/ref/fate/segment-mp4-to-ts
- [DH] tests/ref/fate/webm-webvtt-remux
-
How to add multiple audio files at specific times, on a silence audio file using ffmpeg ?
11 février 2020, par boblapointeI need to overlay audio files at specific times, on an existing silence.mp3. Something like that :
[----[...audio1...]----------[...audio2...]---------------]
I’ve tried the following but it doesn’t work :
ffmpeg -y -i silence.mp3 -itsoffset 4 -i audio1.mp3 -itsoffset 30 -i audio2.mp3 -c:a copy final.mp3
Any help would be appriciated. Thank you.