
Recherche avancée
Autres articles (66)
-
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 -
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 (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (6574)
-
How can I specify pixel density in ffmpeg for video captured on retina screen ?
24 juillet 2015, par hfossliI did a screencapture on my retina desktop screen. In QuickTime Player the
⌘1 Actual size
is then the half size of the video. After processing the video in ffmpeg it seems to loose this information. How do I specify the pixel density of the video ?(Kind of hard to articulate this so please feel free to edit)
-
Access two different webcams with same name ffmpeg dshow
14 juin 2016, par Luke EI’m using ffmpeg to stream video from two webcams of the same type, and thus the same device name when selecting a dshow device with
’video="device name"’
I would like to access both of them at the same time, but they seem to be indistinguishable using this approach. On https://www.ffmpeg.org/ffmpeg-devices.html#dshow I managed to find the following example code, which appears to be using some hardware id to reassign it a pin number, but for the life of me I can’t figure out how I would identify the hardware id of my webcams such as to use this example.ffmpeg -f dshow -audio_pin_name "Audio Out" -video_pin_name 2 -i video=video="@device_pnp_\\?\pci#ven_1a0a&dev_6200&subsys_62021461&rev_01#4&e2c7dd6&0&00e1#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\{ca465100-deb0-4d59-818f-8c477184adf6}":audio="Microphone"
Any help is very much appreciated.
-
ffmpeg php - how to apply filters without losing quality
7 décembre 2013, par JohnHere is a simple request, it has an input, output, and two watermarks. From what I gathered I can't apply "-codec copy" because I'm using a filter.
exec('ffmpeg -i input.mp4 -i wm-bl.png -i wm-br.png -filter_complex "overlay=x=0:y=H-h,overlay=x=W-w:y=H-h" output.mp4');
this does the trick, as far as watermarking is concerned, but the output is compressed into half the original file size.
Is it possible to watermark without losing video quality ?