
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (48)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (5630)
-
FFMPEG API : how to use lossless h264 encoding ?
17 octobre 2012, par user1282931what settings are necessary to use h264 lossless encoding ? I'm not talking about ffmpeg commandline tool, but about the c api.
I manage to encode video with lossy h264, but I don't know how to set the encoder to lossless.?
I code in MSVC++ and use precompiled libraries. online i found some .ffpreset files (for example libx264-lossless_max.ffpreset) which don't seem to be part of the precompiled version i use (at least they are not in the presets folder). I'm not sure whether ffpreset files are somehow compiled into the library, or whether they can be loaded into the encoder somehow ? if so, how would I use such a preset file ?
-
"FFMPEG not found" even though ffmpeg-binaries have been added to the package.json
17 août 2018, par XyvyrianethI keep my bot online using Heroku, so installing FFMPEG to my computer wouldn’t really help me any.
The issue is that I’m still getting this error despite having the npm
ffmpeg-binaries
added to my package.json’s dependencies. I’ve also tried using git URLs from Github and the official FFMPEG website, as well as trying to install the git directly using the run-command option in Heroku’s application page, but I keep getting this same error. Am I missing something ? -
How to calulate PTS and DTS ? FFmpeg C++
27 janvier 2024, par kodomaI have a mkv file where I want to extract the video stream. While extracting, I got the "... non monotonically increasing dts to muxer ..." Warning/Error. I have tried multiple solutions that I found online, but I could never get the timing to be right.


This is the beginning of the video stream :


DTS: 0 PTS: 0 Duration: 41 
DTS: 375 PTS: 375 Duration: 41 
DTS: 209 PTS: 209 Duration: 41 
DTS: 42 PTS: 42 Duration: 41 
DTS: 83 PTS: 83 Duration: 41 
DTS: 125 PTS: 125 Duration: 41 



I also extracted the stream via the FFmpeg executable, and the extracted video file has the same DTS and PTS as the source.


So how do I calculate the DTS and PTS correctly ? If I don't change the timings, the video is the same length, but it is total garbage.