
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (105)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (9756)
-
avformat/iff : check size against INT64_MAX
27 octobre 2020, par Michael Niedermayeravformat/iff : check size against INT64_MAX
Bigger sizes are misinterpreted as negative numbers by the API
Fixes : infinite loop
Fixes : 26611/clusterfuzz-testcase-minimized-ffmpeg_dem_IFF_fuzzer-4890614975692800Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Encoding videos with mixed aspect ratios in hevc [closed]
25 octobre 2020, par bader515I have a huge library of movies, TV Shows, Anime, and Cartoons (about 16tb sorted by plex on my NAS).


Most of them are encoded in h.264, and each video has a different aspect ratio (1920x1080,1280x720...etc).


Is there a way to re-encode them using any tool to hevc with the same aspect ratio and bit per pixel ?


I have already tried using this command using
ffmpeg
, but the result is a bigger size video (with the sd videos) :

pushd "%2"
SET paths=paths.txt
SET /A ffmpeg_qv=24
if EXIST %paths% (
for /f "tokens=*" %%a in (%paths%) do (
 echo Changing to directory %%a
 pushd "%%a"
 CALL :ffmpeg
 )
) else (
CALL :ffmpeg
)
pause
EXIT /B %ERRORLEVEL%
 :ffmpeg
 for /R %%A in (*.mp4, *.avi, *.mov, *.wmv, *.ts, *.m2ts, *.mkv, *.mts) do 
(
 echo Processing "%%A"
 ffmpeg -hwaccel auto -i "%%A" -pix_fmt yuv420p -map 0:v -map 0:a -map_metadata 0 -c:v hevc_nvenc -rc constqp -qp %ffmpeg_qv% -b:v 0K -c:a aac -b:a 384k -movflags +faststart -movflags use_metadata_tags "%%A_CRF%ffmpeg_qv%_HEVC.mp4"
 echo Processed %%A
)
GOTO :EOF



-
Video getting darker after Chromakey overlay with FFMPEG
22 octobre 2020, par João RaimundoI'm trying to use FFMPEG to programatically put an overlay with greenscreen, and I'm using the following command :


ffmpeg -i bg.mp4 -i gs.mp4 -filter_complex "[1:v]chromakey=0x1aa700:0.18:0.01 [ckout];[0:v][ckout]overlay[out]" -preset ultrafast -map "[out]" output.mp4



My problem is that, in background videos bigger than the video with chromakey when the video with chromakey ends, the output video gets darker on black (depending on blend values), as seen in this video.


The idea is to use this command with Python, so, if you know another way to remove chromakey and overlay vídeos with Python, I would like to know !


Thank you in advance !