
Recherche avancée
Autres articles (78)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)
Sur d’autres sites (8423)
-
rtpproto : Fix the input RTP data format check
9 décembre 2014, par Martin Storsjörtpproto : Fix the input RTP data format check
Only the upper 2 bits of the first byte are known to be
a fixed value.The lower bits in the first byte of a RTP packet could be set
if the input is from another RTP packetizers than libavformat’s,
but for RTCP packets, they would also be set when sending RTCP RR
packets, triggering false warnings about incorrect input format
to the protocol.Signed-off-by : Martin Storsjö <martin@martin.st>
-
FFMPEG : Can no longer export >10k pixel video ?
7 décembre 2018, par 1owk3yI used to have FFMPEG perform this command to export valid 10k+ video...
ffmpeg -i input.mp4 -c:v libx264 -filter_complex "[0:v]pad=10928:768:0:0:violet[outv]" -map "[outv]" output.mp4
But I needed upgrade my version of FFMPEG to the latest version to use the
loudnorm
filter. So I upgraded to ffmpeg version 4.1... and the filter became availiable. Suddenly the videos it exports are invalid - OSX will not read them (it did before).Turning down the width results in a valid video export...
ffmpeg -i input.mp4 -c:v libx264 -filter_complex "[0:v]pad=8196:768:0:0:violet[outv]" -map "[outv]" output.mp4
But it certainly doesn’t explain why I WAS able to export 10k+ video, but now doesn’t ?
Why has upgrading FFMPEG made it less capable ?
After doing some reasearch it seems the upper limit of MP4’s is 8k pixels... if that’s the case, how was it even possibly working before ?
-
avcodec/elbg : Also allocate buffers for recursion only once
16 septembre 2021, par Andreas Rheinhardtavcodec/elbg : Also allocate buffers for recursion only once
This is possible because the number of elements needed in each
recursion step decreases geometrically, so the geometric series
provides an upper bound for the sum of number of elements of
the needed buffers.Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>