
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (60)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6927)
-
Anyone familiar with how ffmpeg handles Out of order MPEGTS packets received on UDP
3 mai 2017, par RupeshLet us assume an encoder / ffmpeg that is pushing mpegts via udp. And we have another ffmpeg that is receiving these mpegts packets. In receiver end, because media is received over UDP, it is likely that some packets may be lost, or get out of order. I am interested to know how receiving ffmpeg handles it.
Sending process ffmpeg -re -i xyz.mp4 -codec copy -f mpegts udp ://localhost:5011
Receiving process -i udp ://localhost:5011 output.mov
-
Revision 8f9d94ec17 : SSSE3 Optimization for Atom processors using new instruction selection and order
5 décembre 2014, par levytamar82Changed Paths :
Modify /vp9/common/x86/vp9_subpixel_8t_ssse3.asm
SSSE3 Optimization for Atom processors using new instruction selection and
orderingThe function vp9_filter_block1d16_h8_ssse3 uses the PSHUFB instruction which has
a 3 cycle latency and slows execution when done in blocks of 5 or more on Atom
processors.
By replacing the PSHUFB instructions with other more efficient single cycle
instructions (PUNPCKLBW + PUNPCHBW + PALIGNR) performance can be improved.
In the original code, the PSHUBF uses every byte and is consecutively copied.
This is done more efficiently by PUNPCKLBW and PUNPCHBW, using PALIGNR to
concatenate the intermediate result and then shift right the next consecutive 16
bytes for the final result.For example :
filter = 0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8
Reg = 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
REG1 = PUNPCKLBW Reg, Reg = 0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7
REG2 = PUNPCHBW Reg, Reg = 8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15
PALIGNR REG2, REG1, 1 = 0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8This optimization improved the function performance by 23% and produced a 3%
user level gain on 1080p content on Atom processors.
There was no observed performance impact on Core processors (expected).Change-Id : I3cec701158993d95ed23ff04516942b5a4a461c0
-
msvc : Fix compilation errors due to header include order.
27 novembre 2014, par Matthew Olivermsvc : Fix compilation errors due to header include order.
Ensures that the header include order is such that winsock2.h is always
included before windows.h or that windows.h does not include winsock.h.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>