
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (11865)
-
FFMPEG - Insert text MP4 and closed
29 septembre 2015, par Celso LopesI am using FFmpeg to insert text in a video. However I did not want it ENCODED The Full Video . Just as I want the text to be inserted at 20 seconds, then I want to stop coding. Since I’ll encode several videos a day.
I just need to add the text and do NOT need to to read entire video.Next I use the command , only that it encodes the Full Video .
ffmpeg -i original.mp4 -strict experimental -vf "drawtext=fontfile='/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf':text='Liberado para Celso':x=500:y=10:fontsize=9" saida3.mp4
I believe I don’t need to generate a MP4 as output, just that it inserts the text and be fast !
-
Anomalie #2307 : md5_boutons_plugins()
21 juillet 2014, par marcimat ☺☮☯♫Et les traces pour voir plus clairement les 2 créations du même define (_UPDATED_boutons_plugins) :
Premier passage (constante non définie)¶
array (size=5) 0 => array (size=4) ’file’ => string ’[...]spip/ecrire/inc/plugin.php’ (length=57) ’line’ => int 636 ’function’ => string ’plugin_ongletbouton’ (length=19) 1 => array (size=4) ’file’ => string ’[...]spip/ecrire/inc/plugin.php’ (length=57) ’line’ => int 530 ’function’ => string ’plugins_precompile_xxxtions’ (length=27) 2 => array (size=4) ’file’ => string ’[...]spip/ecrire/inc/plugin.php’ (length=57) ’line’ => int 431 ’function’ => string ’ecrire_plugin_actifs’ (length=20) 3 => array (size=4) ’file’ => string ’[...]spip/ecrire/inc_version.php’ (length=58) ’line’ => int 391 ’function’ => string ’actualise_plugins_actifs’ (length=24) 4 => array (size=4) ’file’ => string ’[...]spip/ecrire/index.php’ (length=52) ’line’ => int 21 ’function’ => string ’include’ (length=7)
Second passage (constante déjà définie)¶
array (size=5) 0 => array (size=4) ’file’ => string ’[...]spip/ecrire/inc/plugin.php’ (length=57) ’line’ => int 636 ’function’ => string ’plugin_ongletbouton’ (length=19) 1 => array (size=4) ’file’ => string ’[...]spip/ecrire/inc/plugin.php’ (length=57) ’line’ => int 530 ’function’ => string ’plugins_precompile_xxxtions’ (length=27) 2 => array (size=4) ’file’ => string ’[...]spip/ecrire/inc/plugin.php’ (length=57) ’line’ => int 431 ’function’ => string ’ecrire_plugin_actifs’ (length=20) 3 => array (size=4) ’file’ => string ’[...]spip/plugins-dist/svp/exec/admin_plugin.php’ (length=74) ’line’ => int 52 ’function’ => string ’actualise_plugins_actifs’ (length=24) 4 => array (size=4) ’file’ => string ’[...]spip/ecrire/index.php’ (length=52) ’line’ => int 151 ’function’ => string ’exec_admin_plugin_dist’ (length=22)
-
How to merge .ts files from a DLINK security camera losslessly ?
13 juin 2022, par anjchangI have >1000s of small .ts files from a DLINK camera of a theft that occured. I first tried to merge the ts files into bigger files so that I could look for the audio where the relevant event occurred. Then in Premiere I looked for the highest sustained audio peaks (it was someone using a saw to cut out a catalytic converter). Then, I isolated the relevant 200 files where things happened on the timeline. But now, I want to export the 20 minutes of the incident with the least compression (or no compression). Apparently Adobe Premiere can export the whole timeline containing these clips, but will compress them. I have not edited any of the files, so I don't want any rendering. I just want them strung together in a "well-known" format so I can send the files to the insurance company and authorities.


I used an answer from here but there were audio gaps. Some of the files had no audio, causing the problem when I first merged the files with :


for i in `\ls *.ts | sort -V`; do echo "file '$i'"; done >> mylist.txt;ffmpeg -f concat -i mylist.txt -c copy -bsf:a aac_adtstoasc video.mp4