
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 (49)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (9184)
-
Can this be a TC burn-in ; 993[1001(1001)1100]1108 - start frame 1001 end 1100 ; (1001) is current frame ;993 &1108 are head and tail 8 frame handles
21 novembre 2022, par Abraham ThomasNeed to create a Timecode overlay on videos in frames as "993[1001(1001)1100]1108"
Here -start frame is 1001 and last frame is 1100 ;
the (1001) is the current frame counter
and 993 and 1108 are head and tail handles (1001-8 and 1100+8)


This is currently done in Davinci Resolve by using below text script (was helped in another forum) :
comp.RenderStart+1001-8 .. " [".. comp.RenderStart+1001 .. " (" .. time+1001 ..") " .. comp.RenderEnd +1001 .. "] " ..comp.RenderEnd +1001+8


At times there are 200 + video clips requiring this ; if same can be achieved in ffmpeg this will speed up our workflow. Is this possible using a single ffmpeg command ; please help


In this forum someone had posted a Timecode overlay command, which gives the current frame number ;
I've used this and this below single command works for me :


ffmpeg -i inputvid.mp4 -vf "drawtext=fontfile=Arial.ttf : text='%frame_num' : start_number=1001 : x=(w-tw)/2 : y=h-(2*lh) : fontcolor=white : fontsize=55 : box=1 : boxcolor=black : boxborderw=5" -c:a copy D :\Test\outputvid.mp4


Is there a way to add to this command ; the first frame and last frame of the video automatically detected by ffmpeg (I'm on windows) ;


-
FFMPEG Audio Issues Youtube Live
2 mars 2018, par Geige VThis issue may have more to do with youtube than ffmpeg, but hopefully someone can help anyway.
I am having the exact issue described in this post https://productforums.google.com/forum/# !topic/youtube/nHTb7ilKvrw. I would have added to it, but it is locked for some reason.
I create a stream from a local webm file on my computer using ffmpeg. This file sounds perfectly fine, and still sounds fine when it is sent to platforms other than youtube live (twitch/facebook). On youtube live, however, the audio has static and crackles during the live feed, but the archive of the video on youtube (after processing) sounds perfectly fine. The ffmpeg command is
ffmpeg -re -i test.webm -acodec aac -vcodec libx264 -ar 44100 -f flv rtmp://a.rtmp.youtube.com/live2/${your_key}
Webm files from this fiddle (https://jsfiddle.net/2rgv7pgj/) will have the issue.
If someone could offer advice it would be greatly appreciated.
-
asm SIMD sniffer
1er août 2023, par Андрей ТернитиThere is x264.
It use a lot of x86 asm files. For example pixel-32.asm.
This files can use different SIMD instruction set : mmx, 3DNow !, sse family, others


I need the simple way to automatically analyze every file. I want get which SIMD family in which file are used. How ?


I think every asm file must contain information about which SIMD family it use (or information that no SIMD). Without this information it is very bad idea try to use this files...

I am angry, my x86 CPU support mmx and 3DNow ! only, but x264 try call sse, so I get "Illegal instruction" sometimes. I plan to make patch for x264.

P.S. If you can make issues in official repo let me know.


P.P.S. This thread on Doom9 (mirror).