
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (70)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...)
Sur d’autres sites (5840)
-
PHP Compress video from Gopro, best way ?
11 janvier 2013, par MeppsI develop a website for hosting videos from GoPro (mp4 files often in HD)
I would like how to compress video after upload.
Acutally, on website you can upload video and watch it but she are so fat and its not possible to watch it ...I see ffmpeg-php but i don't see how to compress with her API.
the best way, it's compress to unique format like flv ? or to ogv/webM/mp4 to used html 5 ?
Any ideas ?
Thanks a lot,
Regards
-
How to merge image and audio to video with the same color ? (FFMPEG)
6 février 2019, par JeanClothemi try to merge audio and image to video in ffmpeg,
The problem that export does not have the same color as the original
Here is a comparison on YouTube
Original : https://www.youtube.com/watch?v=NsSBI9qwFE4
Export ffmpeg : https://www.youtube.com/watch?v=FsxwqTSqpbQ
ffmpeg -loop 1 -i rose.jpg -i rose.flac -c copy -shortest rose.mkv
I want to get the same color as my original image
Thank you !
-
Fingerprint vs transcribing, what is the best approach to identify an audio sample inside another longer audio [closed]
28 mai 2024, par Bernard WiesnerI am trying to detect a shorter version of a spoken audio sample inside a longer audio (full version). The shorter audio should be the same or very similar to the one inside the longer version. I also need to have a rough estimate of the timestamp where the audio sample was found.


Similar questions here :


- 

- Identify audio sample in a file
- How to find the location of a specific word in an audio file ?






What I have researched so far :


1. fingerprints


- 

- Using chromaprint extract the fingerprints from both audio files and store them in a DB, then compare them and find matches.




2. transcribing


- 

- Use a transcriber such as whisper, to transcribe both audio files and store the text in a DB, then compare them and find matches.




I am trying to figure out the simplest solution for this, while still being performant and not too CPU/GPU intensive. My questions are :


- 

- Which one would you chose for simplest, cost effective solution ?
- Which one would consume more disk space ?
- Which one would perform better, in terms of searching/matching using SQL ?








FYI : If there are any other alternatives to those I listed please let me know.