
Recherche avancée
Autres articles (48)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (8576)
-
jpeg2000dec : Use correct printf length modifier for pointer differences
13 mai 2013, par Diego Biurrunjpeg2000dec : Use correct printf length modifier for pointer differences
Also eliminate an unnecessary cast. Fixes the following warning :
jpeg2000dec.c:1200:20 : warning : format ‘%lX’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘long long unsigned int’ -
how to redirect adb screenrecord output to pc(windows/linux) storage
30 novembre 2018, par asullahercIn linux, I use following code to cast android screen to pc, it work well
adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" | ffplay -
so I think exist way to redirect screenrecord output to pc storage, so I try following code
adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" >> /tmp/t.mp4
but the output video file cannot be opened by vlc and google-chrome, how to fix it ?
ffplay is belongs ffmpeg, so I guess exist similar cli in ffmpeg to output input video streaming into video file
-
avcodec/put_bits : Add functions for amount of bytes written/left
25 mars 2021, par Andreas Rheinhardtavcodec/put_bits : Add functions for amount of bytes written/left
Often a caller doesn't want the amount of bits written via a
PutBitContext, but the amount of bytes. This in particular happens
after one has flushed the PutBitContext (e.g. at the end of encoding,
when one wants to know the actual packet size). The current way of doing
this is with put_bits_count(pb)/8 (or (put_bits_count(pb) + 7)/8).Yet this has some issues : It contains implicit multiplications and
divisions by 8 with a cast in between ; it obscurs the intent ; and
it restricts the size of the buffer to (currently) INT_MAX/8 (or
to 1/8 of the maximum of whatever put_bits_count() returns), although
said restriction is not really necessary for users that don't need
a bitcount.Corresponding functions for the amount of bytes left have also been
addded.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>