
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (89)
-
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 -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (8857)
-
Revision 4655 : Faire fonctionner les vidéos sur IE8
5 janvier 2011, par kent1 — LogFaire fonctionner les vidéos sur IE8
-
How to batch watermark videos with FFMPEG on a Mac [closed]
12 août 2020, par analogvidsI've seen a lot of code for scripts to batch convert and to batch watermark videos with FFMPEG but these are largely guides for windows. I need to know how to do this on a Mac. I've successfully written and run a shell script to batch convert videos :


for i in *.Avi; do ffmpeg -i "$i" -c:a aac -b:a 128k -c:v libx264 -preset veryslow "${i%}.mp4"; done)



I have also successfully run a command to convert and watermark videos individually :


ffmpeg -i test.MOV -i watermark.png -filter_complex "overlay=100:100" watermarked.mp4



I consistently get a syntax error when trying to combine these commands to create a script for batch watermarking. I do not need to batch convert in the same command, though having that option would be nice. Any guidance would be greatly appreciated.


for clarification, this is the script i created :


# !/bin/bash for i in *.MOV ; do ffmpeg -i "$i" -i watermark.jpeg -filter_complex “overlay=0” ”$I%.mp4" ; done


and this is the error message terminal spits out : ./batchwatermark10.sh : line 3 : unexpected EOF while looking for matching `"' ./batchwatermark10.sh : line 4 : syntax error : unexpected end of file


Thanks !


-
Slow seek in MKV videos with FFmpeg C/C++
14 juin 2019, par IgorSeeking in any large MKV H.264 video works very slow.
Call of av_seek_frame() in my code using FFmpeg LibAV takes about 3-10 seconds to jump to a middle position in 1-2 hours video.
I tried all combinations of flags : AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE, AVSEEK_FLAG_ANY, AVSEEK_FLAG_FRAME
However VLC seeks very fast in same MVK videos.
Seeking in MP4 H.264 works instantly. The problem is only with MKV.
Latest FFmpeg 4.1.3.