
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (31)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9959)
-
How to salvage a gigantic, possibly corrupt, AIFF file ?
12 février 2012, par Ross DuncanDue to a Sound Track Pro glitch, I have a problematic AIF file. It plays fine in QuickTime Player, and is about 1 hour 50 mins long. However :
- It's 3.81GB in size, whereas (I believe) AIF files are only supposed to be 2GB or smaller.
- iTunes refuses to play it.
- Logic Pro gives the error message "
party-mix.aif is empty!
" when I try to import it. - VLC will open and play the file, but it ends after an 1 hour (I guess this is the 2GB point).
-
Attempting to transcode using ffmpeg to Ogg gives the errors,
[aiff @ 0x102051000] max_analyze_duration 5000000 reached at 5001333
....
[pcm_s16be @ 0x10205a200] invalid PCM packet
but the resulting file plays in VLC up till 1 hour, when it ends.
- Attempting to transcode using ffmpeg to MP3 gives similar results as Ogg, except that the number of channels must reduced from 6 to 2. This is odd because it was a stereo project - where the extra 4 channels came from I have no idea.
- There are a few places where the audio has been very noticeably sped up.
My question : how can I transcode this frankenstein monster to MP3 without losing the second half ? I am running Mac OS 10.6.8.
-
avcodec/jpeglsdec : Increase range for N in ls_get_code_runterm() by using unsigned
5 février 2022, par Michael Niedermayeravcodec/jpeglsdec : Increase range for N in ls_get_code_runterm() by using unsigned
Fixes : left shift of 32768 by 16 places cannot be represented in type 'int'
Fixes : Timeout
Fixes : 44219/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SMVJPEG_fuzzer-4679455379947520
Fixes : 44088/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SMVJPEG_fuzzer-4885976600674304Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Encoding Webm video with VP9 codec with ffmpeg
29 juin 2017, par MichauI am trying to encode a Webm video for embedding in HTML5 tag. According to information from Wikipedia and other places, Chrome and Firefox should support Webm with both VP9 and VP9 codecs.
When I encode the vide with the VP8 codec, the video plays fine in both browsers. Here is the ffmpeg command I use :
ffmpeg -i source.mp4 -f webm -vcodec libvpx -acodec libvorbis -b:v 10M -crf 50 -y result.webm
However, I wanted to use VP9 instead of VP8 to reduce the file size. So I changed the command to use the VP9 codec :
ffmpeg -i source.mp4 -f webm -vcodec libvpx-vp9 -acodec libvorbis -b:v 10M -crf 50 -y result.webm
The output video file is produced, but it doesn’t play both in Chrome and FireFox. The only thing I changed was the "vcodec" option.
So my question is, how can I encode Webm video with VP9 codec using ffmpeg so that it is playable in Web browsers ?