
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (87)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (7866)
-
FFMPEG Applying Mux Operation to All Files in Folder Structure
28 septembre 2023, par EURSCVA MembroFotoI have two identical folder structures containing video files (containing varying audio channels) - one has the originals, one has proxy (lower res) versions.
The process of making the proxies messed with the sample rate of the audio, so now I need to replace the audio from each proxy clip with the audio of the respective original clip.


It seems like that is something I can do with ffmpeg without transcoding all of the files again :


$ ffmpeg -i original_clip.mov -i proxy_clip.mov -c copy -map 0:0 -map 1:1 proxy_new.mov



The issue is I have no idea how to make this happen for all files in a folder structure, and with the output also ending up in an identical folder structure. Any help is really appreciated, this issue has caused quite a mess...


-
Revision 07ce775189 : Reduce loop filter in cyclic refresh. Reduce the delta loop filter for blocks t
12 janvier 2013, par Marco PaniconiChanged Paths :
Modify /vp8/encoder/onyx_if.c
Reduce loop filter in cyclic refresh.Reduce the delta loop filter for blocks that are cyclicly refreshed.
This helps to reduce the dot artifacts that may happen
when zero_mv blocks are repeatedly loop-filtered.This change, along with the fix in :
https://gerrit.chromium.org/gerrit/#/c/40409/
helps to reduce this artifact, but cannot remove the dot artifacts completely.Change-Id : I44675e7a0f59295b648a3b7d4956fb301231a97f
-
ffmpeg to calculate audio/visual difference between compressed and non-compressed video
14 juin 2019, par AsymetrI’m trying to calculate the audio + visual difference between a harshly compressed video file and one that hasn’t been.
I’m using pipes because ultimately I wish this to take src from a camera stream.I’ve managed to get the video results that I’m looking for, but I’m struggling with the audio.
I’ve added a line to invert the phase of the compressed audio, so that when they add up in the blend they should almost cancel each other out, but that doesn’t happen.ffmpeg -i input.avi -f avi -c:v libxvid -qscale:v 30 -c:a wmav1 - | \
ffmpeg -i - -f avi -af "aeval='-val(0)':c=same" - | \
ffmpeg -i input.avi -i - -filter_complex "blend=all_mode=difference" -c:v libx264 -crf 18 -f avi - | \
ffplay -I can still hear all the audio, when what I should be hearing are solely compression artifacts. thx