
Recherche avancée
Autres articles (85)
-
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (5808)
-
Different brightness merging multiple BMP files into MP4 using ffmpeg
14 février 2023, par jamanaI want to edit a small video frame/image by image without losing quality (or without losing much of it). I have used ffmpeg to split into images using the following line :


ffmpeg -i test.mp4 $filename%%03d.bmp


This worked fine. I tried merging the images back using several lines including :


ffmpeg -re -f image2 -framerate 30 -i $filename%%03d.bmp -c:v prores_aw -pix_fmt yuv422p10le test.mkv


Though, this results in a difference between brightness/contast between original and merged videos. The merged file would be a bit darker (you have to look close) than original file. What can I do to fix this ?


Thanks for your time.


-
FFMPEG crop video output is black screen, sound is good [on hold]
11 janvier 2016, par Oum AlaaI cropped a video using ffmpeg command line, the output is black screen, the sound is clear and good :
ffmpeg -i Original.mp4 -t 00:00:29 -vf "crop=634:300:0:60" Done.mp4
ffmpeg version :
ffmpeg version 0.8.17-4:0.8.17-0ubuntu0.12.04.1, Copyright (c) 2000-2014 the Libav developers
built on Mar 16 2015 13:26:50 with gcc 4.6.3
video information :
mediainfo '--Inform=Video;%Width%x%Height%' Original.mp4
634x360Thanks in advance
-
Combining a few shifted streams with ffmpeg - result's expected duration is incorrect
27 octobre 2019, par galraI need to combine a few streams (videos + an audio), all shifted compare to each other and in different lengths, to a file with synchronized streams. Using a dummy case, I found out the following command will create a file with the video shifted by 10sec compare to the audio, playing in full length :
ffmpeg -i in.mp4 -itsoffset 10 -i in.mp4 -c copy -map 0:1 -map 1:0 -t out.mp4
if the -t flag is dismissed, the original length will be kept, and vlc would stop playing and effectively truncate the last 10sec of the video stream. With mkv however it won’t be truncated, and the presented video length increases by 10secs as expected. Also, ffplay won’t truncate the mp4, rather it will play it until the end, but once the original ending timestamp is reached, the timestamp "freezes" and A-V starts gaining (negative) increasing values. ffplay output will be as :
368.34 A-V: -6.124 fd= 14 aq= 0KB vq= 0KB sq= 0B f=0/0
also ffprobe will present the original duration :
Duration: 00:06:08.71, start: 0.000000, bitrate: 304 kb/s
where it should have been 00:06:18.71. I’m no expert, but I guess that there’s some metadata field in the mp4 container that tells the total duration. Is there a way to update it, or must I convert the files to mkv to avoid the wrong & confusing duration indication ?