
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (7)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (2981)
-
How to route input audio to output device at realtime on Android/iOS
6 août 2020, par NimethI'm working on Karaoke project for both Android and iOS where user could record their performances (their video and vocal) and I use ffmpeg for mixing music with their recordings. Anyway, I wish I could route/pipe user vocal at realtime (capture thru device microphone) to output device (speaker) so user could hear their voice at realtime applied with some level of echo (to produce an effect as if we were in classic karaoke room). Over weeks I have been struggling with searching the ways to implement that based on ffmpeg, but no luck. Please kindly help.


Many thanks in advance.
Nimeth


-
Random access to video frame by its id
22 août 2018, par XmilerI have a 24 hour video and would like to organize storage of some meta information (particularly bounding boxes of objects) for arbitrary frame. It implies that I must have a reliable random access to frame by its id, practically even to the range of frames in a way
(id_start, id_end)
.Once again, it is critically to get the same frame when I fill meta storage and when I will get meta later (in general in another environment - ffmpeg version, codecs etc). Otherwise I will put bounding box on the wrong frame.
So there ways I found
-
ffmpeg -i in.mp4 -vf select='between(n,x,y)' -vsync 0 frames%d.png
The problem is it works too slow. Also I don’t know is it reliable in sense of reproducing. -
ffmpeg -ss pkt_pts_time -i in.mp4 -vframes n output_%03d.png
wherepkt_pts_time
got fromffprobe -show_frames in.mp4 -select_streams v
The problem is pkt_pts_time not clear at all. Does pkt_pts_time refer to -ss parameter ?
Actually the question is - does internal meta information of frame (say h.264) contain frame id ? I didn’t find way to get it.
Now I am thinkig to store png md5sum for each T’s frame (anchor). Later I will be able to check consistency using them.
Can anyone suggest something better ?
-
-
How to encode (ffmpeg x264) with continuous seek
13 avril 2015, par ComputerVisionerI have a batch file that encodes video files from ’Source’ folder to ’Target’ folder.
The batch file content is :
for %%a in ("Source*.*") do @echo DirectShowSource("%%a") >> "batchScript.avs" && @echo MSharpen(10,120) >> "batchScript.avs" && ffmpeg -i "batchScript.avs" -n -c:v libx264 -crf 24 -c:a libmp3lame -b:a 192k "Target\%% na.mp4" && del "batchScript.avs" pause
I’m not sure why, but when I playback the encoded files in media player classic I can only jump to discrete jumps in time and not to the exact time I clicked on.
What can be done so this doesn’t happen ?
Thanks all !