
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (33)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)
Sur d’autres sites (6223)
-
Extract Progress tone from Audio file
15 février 2017, par spicyramenIs there a way to extract Progress tone frequency and duration from an audio file (Audacity, VLC, ffmpeg, etc.)
I need to configure Freeswitch spandsp.conf.xml for India.
I collected the audio file where I can hear the tone, wondering if there is a tool to extract and configure the settings required in Freeswitch.
Current non-working config :
<descriptor>
<tone>
<element freq1="2100" freq2="0" min="700" max="0"></element>
</tone>
<tone>
<element freq1="400" freq2="0" min="384" max="400"></element>
<element freq1="0" freq2="0" min="200" max="224"></element>
<element freq1="400" freq2="0" min="384" max="400"></element>
<element freq1="0" freq2="0" min="1968" max="1984"></element>
</tone>
<tone>
<element freq1="425" freq2="0" min="256" max="272"></element>
<element freq1="0" freq2="0" min="240" max="256"></element>
<element freq1="425" freq2="0" min="256" max="272"></element>
<element freq1="0" freq2="0" min="224" max="240"></element>
</tone>
<tone>
<element freq1="400" freq2="0" min="700" max="760"></element>
<element freq1="0" freq2="0" min="700" max="760"></element>
<element freq1="400" freq2="0" min="700" max="760"></element>
<element freq1="0" freq2="0" min="700" max="760"></element>
</tone>
</descriptor>Image of progress tone.
-
How to create videos with small file size but large resolution ?
13 février 2017, par Gregory MagarshakIs there a programmatic way to create videos that capture, essentially, a powerpoint presentation, that would be not much larger than the audio + screenshots of the powerpoint itself ?
I want to make software that produces videos with the full resolution of a powerpoint on a large screen, and with a person speaking over it and wvwn doodling. Kind of like "bcontext" software. And then I want to export videos for youtube and other places to be hosted. But I want them to be SMALL. So they can be downloaded by people with slow connections eg in India.
What factors can affect video size and how can i take advantage of the relative "stillness" of most pixels at most times to make the compression preserve the full sharpness and yet take advantage of the lack of visual changes ? What software do you recommend ?
-
Why is one ffmpeg webm dash stream much larger than the others ?
5 janvier 2017, par ranvelOver the summer, I worked on putting together a script which took a x264 video/mp3 stream and broke it up into the different streams so that it would work via MSE-DASH. (Based heavily on the instructions on the webmproject.org website) Those same scripts have ceased to work, turning a 6GB video into several 25 Gb videos. I kept up with updates of ffmpeg and so I don’t know when it stopped working, but I am guessing it was due to the way that their DASH Webm implementation was updated.
I found new method which works better, but still has a major problem with one stream. I was hoping someone could explain how this encoding works so that I could understand the underlying cause.
#!/bin/bash
COMMON_OPTS="-map 0:0 -an -threads 11 -cpu-used 4 -cmp chroma"
WEBM_OPTS="-f webm -c:v vp9 -keyint_min 50 -g 50 -dash 1"
ffmpeg -i $1 -vn -acodec libvorbis -ab 128k audio.webm &
ffmpeg -i $1 $COMMON_OPTS $WEBM_OPTS -b:v 500k -vf scale=1280:720 -y vid-500k.webm &
ffmpeg -i $1 $COMMON_OPTS $WEBM_OPTS -b:v 700k -vf scale=1280:720 -y vid-700k.webm &
ffmpeg -i $1 $COMMON_OPTS $WEBM_OPTS -b:v 1000k -vf scale=1280:720 -y vid-1000k.webm &
ffmpeg -i $1 $COMMON_OPTS $WEBM_OPTS -b:v 1500k -vf scale=1280:720 -y vid-1500k.webmThe transcode is not yet complete, but you can see where this is headed :
-rw-r--r-- 1 user staff 87M Jan 4 23:27 audio.webm
-rw-r--r-- 1 user staff 27M Jan 4 23:42 vid-1000k.webm
-rw-r--r-- 1 user staff 285M Jan 4 23:42 vid-1500k.webm
-rw-r--r-- 1 user staff 15M Jan 4 23:42 vid-500k.webm
-rw-r--r-- 1 user staff 20M Jan 4 23:42 vid-700k.webmThe 1500k variant is disproportionately larger than the other streams.
The other problem is that when I use a shorter video, lets say eight or nine minutes, the above configuration runs as expected and everything is perfect. I don’t know where the limit for this is since each test costs a lot of processing power and time, but if it’s less than ten minutes, it works and if its longer than an hour, it produces massive files.