
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 (102)
-
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. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (9858)
-
How to make a mosaic with ffmpeg that wouldn't start every video at the same time ? [duplicate]
12 décembre 2019, par Samoussa Binou MymusicisinmeThis question already has an answer here :
-
Using FFmpeg, I would like to encode 4 videos into a Mosaic with audio from each videos included.
-
Also, I would like for this mosaic to play 1 video at a time, while the others are paused until the one playing finishes. The first video to play would be the up-left one, then up-right one, then down-left one, to end with done-right one when each video is stopped playing : never at the same time.
-
Finally, I would like for this mosaic to display the 1rst frame of the videos that aren’t playing (kinda like a thumbnail).
Is that even possible ? and could you help me figure out how ? Please ?
Thank you very much for the help !
-
-
How can I stream video in swift using FFmpeg in real time ?
13 novembre 2019, par rInI want to make a real time video streaming app but I’m new to Swift and live streaming..
Video input captured by AVCaptureSession is from iPhone and I want to encode the input from MPEG-4 to MPEG-2.
I will use FFmpeg library to encode the video input in swift.Here’s my questions.
-
I don’t know how to deliver video data to FFmpeg functions. Actually I’m not certain that I have to use FFmpeg library to encode video data from MPEG-4 to MPEG-2 transport stream. Is there any API that can encode video data in Swift by Apple ?
-
How can I deal with video data from AVCaptureSession ? Are there frames or h.264 video in CMSampleBuffer ? I want to know what type of data is in CMSampleBuffer.
I’m struggling to solve this problem. Please let me know anything if you have some experiences about this kind of project. Any ideas or advice for a better approach are welcome.
-
-
Howto extract blackframes and volumes info from video at the same time with ffmpeg/ffprobe
3 novembre 2019, par Alexander KislitskyI’m extracting astats info with :
ffprobe -f lavfi -i "amovie=video.flv,astats=metadata=1:reset=1" -show_entries frame=pkt_pts_time:frame_tags -print_format json
Blackframes info with :
ffprobe -f lavfi -i "movie=video.flv,blackframe=1" -show_entries frame=pkt_pts_time:frame_tags -print_format json
But when I’m trying to combine filters like this :
ffprobe -f lavfi -i "amovie=video.flv,astats=metadata=1:reset=1;movie=video.flv,blackframe=1" -show_entries frame=pkt_pts_time:frame_tags -print_format json
I’ve the following error : Invalid filterchain containing an unlabelled output pad : "astats=metadata=1:reset=1 ;movie=video.flv,blackframe=1"
How to combine output of two filters in a single json file ?