
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
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 (5830)
-
How to stretch the WAV file to the same video length ?
5 octobre 2016, par Michael HeubergerSo yeah, having a tricky ffmpeg issue here.
In my app I’m encoding a video based on image frames and add a WAV file for the sound from the same source but through a different web socket. It can happen that the WAV file doesn’t always have exactly the same length as the video based on those images + fps (plus minus few seconds).
How can I tell ffmpeg to "stretch" the input WAV file to have it the same length as the video ?
In short :
images (i) + WAV (w) = final video (v)
length(w) != length (v)
... which is causing problems.Here an example ffmpeg command I am currently using :
ffmpeg -f image2 -thread_queue_size 512 -framerate 21.5 -i
/frames/%d.webp -i videomail_preview.wav -y -acodec aac -strict
experimental -ac 1 -vcodec libx264 -crf 16 -preset fast -profile:v
baseline -pix_fmt yuv420p -loglevel warning -movflags +faststart
videomail_good.mp4 -acodec libvorbis -ac 1 -vcodec libvpx -crf 8
-deadline good -cpu-used 1 -pix_fmt yuv420p -loglevel warning -movflags +faststart videomail_good.webmAny suggestions/trick I am unaware of ?
-
FFmpeg Video Merging Length Issue
1er avril 2014, par Sanket990I have created 2 file 1)first.mp4 and 2) test.mp3 when i am merging this file and created one new video .video is created perfectly done but getting one problem (Audio Problem)
Two file description
first.mp4 in video Length -30Sec
test.mp4 in audio Length -10SecHow to handle remaining new video in 10Sec after audio not listen problem any way to handle this type of problem or Any way to detect if remaining 20Sec audio set as first.mp4 video length 20Sec to 30Sec audio length set
I am executing below command
String videoWithAudio[] = { "ffmpeg", "-i", "/sdcard/first.mp4", "-i",
"/sdcard/test.mp3", "-c:v", "copy", "-c:a", "aac",
"-strict", "experimental", "-map", "0:v:0", "-map",
"1:a:0", "/sdcard/jointAb.mp4" }; -
fate/matroska : Add test for zero-length Block
25 avril 2020, par Andreas Rheinhardtfate/matroska : Add test for zero-length Block
It furthermore tests the demuxer's handling of chained SeekHeads,
level 1-elements after the Clusters and the muxer's capability of
writing huge TrackNumbers as well as expanding the Cues' length field
by one byte if necessary to fill the reserved space. It also tests
propagation of metadata.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>