
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (83)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14014)
-
Merge commit ’35c6ce76b107225a19eb33aea38857d2405882af’
23 février 2015, par Michael NiedermayerMerge commit ’35c6ce76b107225a19eb33aea38857d2405882af’
* commit ’35c6ce76b107225a19eb33aea38857d2405882af’ :
Canopus HQX decoderConflicts :
Changelog
libavcodec/avcodec.h
libavcodec/version.h
tests/fate/video.makMerged-by : Michael Niedermayer <michaelni@gmx.at>
- [DH] Changelog
- [DH] doc/general.texi
- [DH] libavcodec/Makefile
- [DH] libavcodec/allcodecs.c
- [DH] libavcodec/avcodec.h
- [DH] libavcodec/codec_desc.c
- [DH] libavcodec/hqx.c
- [DH] libavcodec/hqx.h
- [DH] libavcodec/hqxvlc.c
- [DH] libavcodec/version.h
- [DH] libavformat/riff.c
- [DH] tests/fate/video.mak
- [DH] tests/ref/fate/canopus-hqx422
- [DH] tests/ref/fate/canopus-hqx422a
-
Anomalie #3234 : Upload gros fichiers : detecter dans le verifier() du formulaire upload
11 juin 2015, par Eric CamusPour le point 2 : http://php.net/manual/fr/language.types.string.php#language.types.string.conversion
Une chaine dans une opération arithmétique est forcément converti en nombre.
C’est d’ailleurs un truc et astuce que j’utilise pour extraire seulement un nombre d’une input : $x=0+$_REQUEST[’in’] ; donnera toujours un chiffre (entier ou float !).
Donc pas besoin d’extraire la lettre, à la rigueur changer le return $val ; en return (0+$val) ; en cas de lettre non comprise. -
FFmpeg export codec not supported by Samsung
21 juillet 2021, par CoskiI am using FFmpeg to render videos (concatenating image files with audio and then applying speed and volume filters) to export videos to upload to TikTok. As a result, I must first move the videos to my phone.


I do not understand why my phone (S20) will happily play one of the videos (codec information pictured first), but presents an error "Codec not supported" when playing the other (information second).






The codec information is from VLC, and as you can see, both videos have identical Codecs (H264-MPEG4).


From analysing the information, the only conclusion I come to is that it has something to do with the fact that the "Decoded Format" differs across the videos. How can I change my export command on the latter so my phone supports the codec ?


CONCATENATION CODE

ffmpeg -f concat -safe 0 -i {path_temp}\\clips.txt -c copy -y "{path_temp}\\{title}_a.mp4


FILTER CODE

ffmpeg -i input.mp4 -filter:a "volume={volume}" -y temp.mp4"


SECOND FILTER

ffmpeg -i temp.mp4 -filter_complex "[0:v]setpts={1/speed}*PTS[v];[0:a]atempo={speed}[a]" -map "[v]" -map "[a]" -y output.mp4