
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (55)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)
Sur d’autres sites (12117)
-
Revision f085d128f7 : Remove brightness weighting in two pass. This code dates from the ancient past
23 mai 2014, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Remove brightness weighting in two pass.This code dates from the ancient past and
applied an error score weighting based on pixel
brightness. This not seem to be providing any
benefit metrics wise and could be making some
visual issues in dark frames worse.The field is left in place in the FIRSTPASS_STATS data
structure in this patch, pending changes to unit tests that
use a pre-defined first pass file.Change-Id : Id50f04205230234858e7548ce523f11acaf3567d
-
Desktop Audio in FFmpeg [on hold]
26 avril 2014, par user3576075I try to record my screen with ffmpeg, I’m on Archlinux so I applied the (Arch)Wiki :
ffmpeg -f x11grab -video_size 1920x1080 -i $DISPLAY -f alsa -i default -c:v ffvhuff -c:a flac test.mkv
They are using the default sound device in ALSA, but not working for me. No sound !
I tried to set the device to another, but I don’t know how to list them.Any ideas what could be wrong or ideas on how to identify the issue ?
Thanks. -
ffmpeg/avconv force scaled output to be divisible by 2 [migrated]
25 mars 2013, par J VI record my desktop with avconv (aka ffmpeg) and then scale it to 720p.
I recently added to my script so they can select a window with xwininfo and it will record that one specifically.
However, if the output format isn't divisible by 2 the encoder freaks out and I don't get my video.
Is there a way to fix this inside ffmpeg so I don't have to do a bunch of manual math in bash to set the scale values ?
Is it possible to have the scale filter subtract/add one to width/height if they're uneven ? (round ?)
Is it possible to apply another filter after the original scale that could accomplish this ? (This would round videos that have an uneven input size and no scaling)
#!/bin/bash
avconv \
-f x11grab -r $fps -s $capturesize -i :0.0$offset \
-vcodec libx264 \
-vf scale=-1:720 \
-pre:v lossless_ultrafast \
-threads 4 \
-y $@Some old mailing lists suggest a
round()
function you can use in the filter but I can't seem to get the syntax right. If it works ascale=round(iw,2):round(ih,2)
filter applied at the end would solve all my problems at once.iw
andih
don't seem to work.