
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (66)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (9785)
-
avcodec/ylc : Fix vlc of 31 bits
8 juillet 2017, par Michael Niedermayeravcodec/ylc : Fix vlc of 31 bits
Fixes : runtime error : left shift of 1 by 31 places cannot be represented in type 'int'
Fixes : 2515/clusterfuzz-testcase-minimized-6197200012967936Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Why is packet.pts != frame->pkt_pts in AVFrame ?
1er juin 2015, par BlenderBenderTrying to understand some audio/video sync issues via ffmpeg, I noticed the following. Running this code
while (av_read_frame(formatCtx, &packet) >= 0)
{
if (packet.stream_index == videoStream)
{
avcodec_decode_video2(videoCodecCtx, frame, &got_frame, &packet);
}
printf("packet.pts = %d\n", packet.pts);
printf("frame->pkt_pts", frame->pkt_pts);
}shows that frame->pkt_pts in general differs from packet.pts, despite the documentation claiming that frame->pkt_pts is the
PTS copied from the AVPacket that was decoded to produce this frame
Moreover I noticed that the difference between the two is big exactly at the places where audio and video are out of sync.
So, why is
packet.pts != frame->pkt_pts
? -
Video upload size
16 mai 2014, par Jonas mI’m having a hard time figuring this one out, so hopefully, some of you who has tried this before, will take the time to reply and share your knowledge.
I’m working on a site, which after release, will be feeded in the television and other commercial places. The site asks the user to upload a video with a story, and we expect alot of people to do so.
My problem is the whole storage/space talk. A normal, unencoded iPhone recording easily fills around 100-120 MB for a minute or two.
I’ve tried setting up and using FFMPEG to re-encode the movies, but the problem is, that one encoding sucks up 100% of the CPU, leaving the site inaccisible for anybody else.
Is there anything you could suggest, which would be sufficient for such a site ? The client is on a budget, so price is a consideration aswell. Best of all would be a free alternative to etc. FFMPEG, but with less CPU usage.
My specs are as follows
CentOs 6 on a
1GB ram DigitalOcean cloud service with nginx + php-fpm and mysql.Im hoping for some cleaver folks to answer this !
Thanks in advance.
Jonas