
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (47)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (9470)
-
FFMPEG : Set Opacity of audio waveform color
13 août 2018, par Software Development ConsultanI was trying to do transparency in waveform generated. It seems there is not direct option in ’showwaves’ filter so I came across ’colorkey’ which might help.
I am trying with following :
ffmpeg -y -loop 1 -threads 0 -i background.png -i input.mp3 -filter_complex "[1:a]aformat=channel_layouts=mono,showwaves=s=1280x100:rate=7:mode=cline:scale=sqrt:colors=0x0000ff,colorkey=color=0x0000ff:similarity=0.01:blend=0.1[v] ; [0:v][v] overlay=0:155 [v1]" -map "[v1]" -map 1:a -c:v libx264 -crf 35 -ss 0 -t 5 -c:a copy -shortest -pix_fmt yuv420p -threads 0 test_org.mp4
So I wanted to blue color waveform and wanted to set opacity of that 1 to 0 let say. But it seems this generates blackbox which is actual background of ’1280x100’. I want to keep background of waveform transparent and just wanted to change opacity of waveform only.
Result of my command : enter image description here
Can you please let me know your suggestion
@Gyan, this is with reference to following question which you have answered.
Thanks, Hardik
-
Stream video using FFMPEG and FFSERVER [on hold]
28 septembre 2018, par Madhav AgarwalI am using a simple opencv code to read a video file from the system.
import cv2
cap = cv2.VideoCapture("1.mp4")
while True:
res,frame = cap.imread()
cv2.imshow("frame",frame)
cv2.waitKey(1)Now i want to stream this video feed to an HTTP server, so that it can be accessed by multiple users using the given URL.
I came across Flask but it supports only one user at time.
After going through various blogs, i came to know that FFSERVER and FFMPEG might solve the problem.Now i am stuck on how to send a frame to FFSERVER.
I run the following command..
ffmpeg -i sintel.mp4 http://localhost:8090/feed1.ffm
But i didn’t send anything to the FFSERVER.
I am using the code from this blog post
-
How To Run Multiple Code ffmpeg in Macbook Terminal Using bat file ?
26 juillet 2021, par ChhengRavyI have a problem to run bat file in Macboook Terminal. I created file bat that has code below.


ffmpeg -i input1.mp4 -vf hflip -c:a copy output1.mp4
ffmpeg -i input2.mp4 -vf hflip -c:a copy output2.mp4
ffmpeg -i input3.mp4 -vf hflip -c:a copy output3.mp4



If I run that bat file in window Command Promt I will get three outputs(output1,output2,output3). It work fine.


But If I run it in terminal Mackbook by drag that file to terminal I get only output3. I don't know why in Macbook It works only the last code.


Please Anyone knows about this help me. I was stuck a few days already.


Thank you so much for your help.