
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
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
Autres articles (37)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 : (...)
Sur d’autres sites (5600)
-
How to generating waveform from video & show it with video
25 novembre 2016, par SalilWe are using Rails as a backend & AngularJS on Front End side in my App where we need to show Video & audio waveform of that video.
We are using ’wavesurfer.js’ to show the waveform on Front End side & ’node-pcm’ to generate pcm from video file on BackEnd side.
This is working as expected but in some of the videos while creating waveform from pcm data instead of showing small sine waves we get flat line.
Also it takes too much time to show the waveform for every page reload.To overcome this issue we are planning to create waveform image using ffmpeg
ffmpeg -i 'https://s3.amazonaws.com/aadasdsadsadasdas/xyz.mp4' -filter_complex showwavespic -frames:v 1 output.png
This is working fine but it also takes too much time (Ofcourse only once ) to generate the image for remote video (i.e. We are saving videos on S3)
Problem with this i don’t get any library to integrate the waveform image with the Video.
Can someone suggest any better approach related to this.
-
requesting script for compressing mp3 files recursively using ffmpeg
3 mai 2017, par Guddla RupeshHi I am Rupesh from India. I have a directory of size 65 GB which contains 2500 folders and 7000 mp3 files with 64 kbps bitrate.
I have installed Windows 8 and Linux with ffmpeg on my system.
I want to convert all these files to 16 kbps recursively I mean maintain folder structure of source. I have searched web for script and found some code but none of them provided what I want. I have searched even GUI frontend for ffmpeg and found some software but they don’t have option to convert all these files recursively and some don’t have option to convert to lower bitrate.
I have read ffmpeg manual pages and those was difficult to understand and even I don’t have scripting experience.
Can you create a script to perform the following steps
1) The script must compress files in each and every directory maintaining directory structure.
2) All files must be compressed to 16 kbps and 11500 samples per second with highest quality.
3) If any errors are encountered during the process the corresponding file information ie., file name with path must be stored in a seperate text file for future viewing.
4) After the process has been completed the system must shutdown.I want accurate compression. Please try to create a bash script ( linux ) or a batch script ( Windows ) and post the script.
Regards,
Rupesh. -
How do I pipe a stream to ffmpeg using the subprocess library
15 juin 2020, par JacksonUsing the following command I can pipe the stream data from streamlink to ffmpeg and save the stream as an mp4 file.



streamlink https://www.youtube.com/watch?v=UmclL6funN8 best -O | ffmpeg -i pipe:0 -c:v copy -c:a copy "test.mp4"




I would like to implement this inside a Python script but I am not able to get the stream to pipe into the ffmpeg process.



url = "https://www.youtube.com/watch?v=UmclL6funN8"
process = subprocess.Popen(("streamlink", url, "best", "-O"), stdout=subprocess.PIPE)
output = subprocess.check_output(('ffmpeg', '-i', 'pipe:0', '-c:v', 'copy', '-c:a', 'copy', "test.mp4"), stdin=process.stdout)




Can anyone see where I am going wrong ?