
Recherche avancée
Autres articles (67)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (8477)
-
Loosing video quality when merging files
23 juillet 2019, par S.TCreating a video from 2 videos (each video is about 15MB, with good quality), merging them side by side is causing loosing the videos quality and creating a movie with the size of 1MB.
i made a command that takes 2 movies, placing them side by side and merging them to one movie.
ffmpeg -threads 11 -i 1.mp4 -i 2.mp4 -i logo.png -filter_complex [0:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=black[a];[1:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=black[b];
nullsrc=size=1280x960[base];[a]setpts=PTS-STARTPTS,scale=640x960[left];[b]setpts=PTS-STARTPTS,scale=640x960[right];[base][left]overlay=shortest=1[tmp1];[tmp1][right]overlay=640:0[video];[0:a]apad[apa];[1:a]apad[apa1];[apa][apa1]amix=inputs=2:duration=longest[audio];[2:v]scale=120:44[ovrl];[video][ovrl]overlay=20:45[videoandlogo] -map [videoandlogo] -map [audio] -t 25 output.mp4why is the command reduce the quality and creating only a 1MB file ?
Thanks. -
Ubuntu reduce video size with ffmepg and change format
27 juillet 2015, par Arnas PečelisI want to watermark, reduce weigth, resize and change format for selected videos.
Also I need to keep quality as high as it possible.Now what I have :
ffmpeg -i prepared/video.mp4 -i units/video_watermark.png -filter_complex overlay=10:10 -codec:a copy moved/video_test.mp4
and I’m watermarking video, but the quality drops a lot. Also I have :
ffmpeg -i prepared/video.mp4 -s 1280x720 -b 512k -vcodec mpeg1video -acodec copy
but also I need to reduce weight also as lot as possible. The reconstructed videos will be shown as movies online. My question would be - is it possible to do it one line and change format to .mp4 ?
PS. I have constructed command :
ffmpeg -i downloaded/movie/movie.avi -c:v libx264 -acodec libfaac -b:a 64k -preset ultrafast -vf "movie=units/video_watermark.png [watermark]; [in][watermark] overlay=10:10 [out]" -movflags faststart prepared/movie.mp4
but it returns me error :
ffmpeg version 2.7.1 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04)
configuration:
libavutil 54. 27.100 / 54. 27.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 36.100 / 56. 36.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100
Unrecognized option 'preset'.
Error splitting the argument list: Option not found -
How fix FFMPEG No decoder surfaces left error [closed]
14 juillet 2021, par R.A.M
Anybody know how could i fix this problem ?

[h264 @ 0x56086cab3340] No decoder surfaces left
Error while decoding stream #0:0: Invalid data found when processing input0
Impossible to convert between the formats supported by the filter 
'Parsed_scale_npp_0' 
and the filter 'auto_scaler_0'
Error reinitializing filters!
Failed to inject frame into filter network: Function not implemented
Error while processing the decoded data for stream #0:0
[aac @ 0x56086bd86fc0] Qavg: 680.716
[aac @ 0x56086bd86fc0] 2 frames left in the queue on closing
[aac @ 0x56086bd88c40] Qavg: 680.716
[aac @ 0x56086bd88c40] 2 frames left in the queue on closing



Let me explain more about my problem :

When i transcoding a video on GPU use CUDA, get this error on some movies (not all my video)

It works currectly on many videos but has exception in some video like this.

When i use Cpu for transcoding this type of video(that has problem) it works and not have any exception and errors.

In fact i think problem is on CUDA.

The FFMPEG command that i use, is :

ffmpeg -y -loglevel info -hwaccel cuda -hwaccel_output_format cuda -hwaccel_device 0 
-i MY_VIDEO.mp4 -vf scale_npp=w=1280:h=720 -c:v h264_nvenc -profile:v main -b:v 
1500000 -sc_threshold 0 -g 25 -keyint_min 25 -bf 2 -c:a aac -b:a 128000 -ar 48000 - 
hls_segment_filename f-4-seg-%d.ts f-4.m3u8



Thanks