
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11419)
-
doc/ffserver : mention how to access streams through RTSP
3 janvier 2014, par Stefano Sabatini -
Can I access FFPlay.exe's STDIN in order to emulate a 'q' keypress ?
28 novembre 2023, par couldabinI am writing a Win32 program that launches ffplay.exe. I would like to have my program send a quit message ('q') but cannot get ffplay to respond. I am using CreatePipe() to initialize read/write handles that are used by CreateProcess(), which launches ffplay.exe. Should I be able to make this work ? If I start ffplay manually from a command line, pressing 'q' works fine. I would like to emulate that with my Win32 program. To test my code, I substituted ffplay.exe with another console application that prompts the user for input, and it responds as expected.


-
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 ?
-