
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#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
Autres articles (85)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (9207)
-
"Widen" the stereo with Web Audio API
20 février 2018, par Dan P.I am trying to use the Web Audio API to match an ffmpeg command I run on the server to widen the stereo of a audio tracks.
With ffmpeg, I use : https://ffmpeg.org/ffmpeg-filters.html#stereowiden
More specifically, this my ffmpeg command :
stereowiden=delay=1:feedback=0.13:crossfeed=0:drymix=1
In JS with the Web Audio API I’ve tried using the
StereoPanNode
(https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode) but this only seems to pan the audio left and right. I’ve also tried to combine it with theDelayNode
(https://developer.mozilla.org/en-US/docs/Web/API/DelayNode), still in vain.How would you achieve that ?
-
Block YouTube from source page when trying to download a video with youtube-dl
18 mars 2018, par user3108268E.g. example.com/1 has a video hosted, you run
youtube-dl example.com/1
and it all works fine, the video gets downloaded.E.g. example.com/2 also has a video, but it also has a YouTube trailer. If you run
youtube-dl example.com/2
the hosted video gets completely ignored and only YouTube trailer gets downloaded.From what I see in the log is that the wanted local video playlist gets downloaded first and then ignored by getting overwritten by embedded YouTube playlist download.
You can’t even get the url with
--get-url
or get format with--list-formats
. It always prints the googlevideos URL for the YouTube trailer and lists only the YouTube trailer formats.I did manage to pull out the local video URL via
--dump-pages
and decoding the base64 encoded source. But the problem is that the URL contains a unique token each time the page example.com/2 is called, so passing the unique one-time video URL like e.g. example.com/2/video.php ?token=asdf to youtube-dl won’t download the video.So I figured somehow I need to bypass the YouTube trailer source and playlist when calling
youtube-dl example.com/2
and trying to download local video and not the YouTube trailer. -
libavdevice/decklink : add support for -sources and -sinks arguments
6 octobre 2017, par Devin Heitmuellerlibavdevice/decklink : add support for -sources and -sinks arguments
Add support for enumerating the sources/sinks via the ffmpeg
command line options, as opposed to having to create a real pipeline
and use the "-list_devices" option which does exit() after dumping
out the options.Note that this patch preserves the existing "-list_devices" option,
but now shares common code for the actual enumeration.Updated to reflect feedback from Marton Balint <cus@passwd.hu>.
Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
Signed-off-by : Marton Balint <cus@passwd.hu>