
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
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 (104)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (12226)
-
Generate Multiple Thumbnails from Multiple Videos (with FFmpeg)
30 juin 2020, par netsonicyxfI have multiple videos in different locations, something like :
D :\Folder 1\001.ts
E :\Folder 2\abc.avi
F :\Foder X\视频.mp4 (some videos name are in non-English languages)


And I already have a filelist.txt with these file path in it




file 'D :\Folder 1\001.ts'






file 'E :\Folder 2\abc.avi'






file 'F :\Foder X\视频.mp4'




For each video, I want to generate 3 images, starting from 00:00:10, then next image every 10 sec.
The name of the image should be the name of the video + number staring from 1, something like
001_1.jpg, 001_2.jpg, 001_3.jpg
abc_1.jpg, abc_2.jpg, abc_3.jpg
视频_1.jpg, 视频_2.jpg, 视频_3.jpg


how to do it in Windows 10 ?


-
FFMPEG - Overlay stop updating after few minutes
27 décembre 2018, par Vincent CarreteroFirst im sorry for my english :-(
I do streaming from RTSP to Facebook live (RTMP).
I overlay PNG file, on the stream left corner, with score information and time (like tv soccer match).After few minutes, the image overlay dont refresh, and i dont know why...
Image is updated by vbscript, and its correctly done.This is my code :
cmd.exe /K ffmpeg.exe ^
-f lavfi -y ^
-i anullsrc -rtsp_transport tcp ^
-i "rtsp://xxx:xxx@xxx:8080/videoMain" ^
-r 1 -loop 1 -f image2pipe -i 762141_marquage.png ^
-filter_complex "[2:v]setpts=PTS-STARTPTS[a];[1:v][a]overlay=10:10" ^
-tune zerolatency -vcodec libx264 -c:v libx264 -crf 30 -preset ultrafast -c:a aac -strict experimental ^
-f flv "rtmp://xxx"Some one can help me ? please :-)
-
Add aac single audio to MPEG DASH mpd files
26 avril 2017, par AdminyI am trying to add manually to the .mpd file the following code.
<adaptationset contenttype="audio" segmentalignment="true" bitstreamswitching="true" lang="English">
<representation mimetype="audio/mp4" codecs="mp4a.40.2" audiosamplingrate="44100">
<audiochannelconfiguration schemeiduri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"></audiochannelconfiguration>
<segmenttemplate timescale="44100" media="http://localhost/audio.aac" startnumber="1">
</segmenttemplate>
</representation>
</adaptationset>But its not working, Does everything have to be segmented in .mpd files ? or can I have a single .acc file ?