
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#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
Autres articles (74)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...)
Sur d’autres sites (6371)
-
Discord.Py Opus Heroku Issues
9 janvier 2019, par charguyyI’m having trouble setting up my music bot to work with Heroku. It works perfectly fine on my host machine, however, I get an "Opus Not Loaded" error when I run the bot in Heroku. I already have a ffmpeg buildpack(https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git), an apt buildpack (https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git) with the Aptfile fully setup (see below), and I have an opus buildpack (https://github.com/dubsmash/heroku-buildpack-opus.git). I also have youtube_dl and discord.py[voice] in my requirements.txt file
Here is the contents of my Aptfile.
build-essential
unzip
software-properties-common
libopus-dev
libffi-dev
libsodium-devHere is the contents of my requirements.txt file
discord.py[voice]
youtube_dlAny help is appreciated :)
-
Issues building ffmpeg on Windows [closed]
19 janvier 2024, par RKumI have to use ffmpeg in our c++ Windows project. I have Visual Studio 2017.
For this I have to use ffmpeg-cpp.

ffmpeg-cpp is dependent on ffmpeg.

To build ffmpeg I am following instructions in https://ffmpeg.org/platform.html#Windows.

I installedMSYS2 MINGW64
using installermsys2-x86_64-20240113.exe
.

But I am not seeing files like
msys_shell.bat
ormingw64_shell.bat
ormingw32_shell.bat
.

How do I get these files ?


Also if I run commands like
pacman -S make pkgconf diffutils
I get this error :



error : failed retrieving file 'pkgconf-2.1.0-1-x86_64.pkg.tar.zst' from mirror.iscas.ac.cn : SSL certificate problem : self-signed certificate in certificate chain




How to resolve this certificate issue ?


-
H264 decompression/decomposition into JPG - quality issues
5 juin 2013, par RespectechI'm trying to decode a 1920x1080 30fps h264 stream. Individual frames look outstanding in VLC media player (pausing the playback), but when I decode using avconv (ffmpeg has been deprecated and replaced by avconv), the frame quality is really poor by comparison (my primary complaint is blockiness).
Here's how I am calling avconv :
avconv -i video.h264 -s 1920x1080 -f image2 temp/images/video-%03d.jpg
Is there a jpg output setting for avconv ? I read what I suspected were the salient parts of the avconv documentation (namely, http://libav.org/avconv.html#image2-1), and couldn't find any way to specify the output jpg quality.
In addition, it appears avconv reads the entire stream before it starts decoding it, so if the stream is in progress, it only decodes to where the stream was when avconv started the decoding process. Is there any way around this ? In other words, if a 10-second-long stream is started at t seconds and avconv is started at t+1 seconds, avconv will only decode 1 second of the stream.