
Recherche avancée
Autres articles (50)
-
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...) -
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (5192)
-
Merge commit ’cdb1665f70def544ddab3e3ed3763ef99c8b3873’
24 avril 2016, par Derek Buitenhuis -
Finding ffmpeg installed version
25 janvier 2019, par JBWanscherI have a cross machine script which needs to detect the version of ffmpeg as a regular version string (e.g. 2.3.8-1 or 4.1.3-0). The command
ffmpeg -version
returns a host of most likely very relevant information to others, but this is much more than what I need.
ffmpeg version 2.8.15-0ubuntu0.16.04.1 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.10) 20160609
configuration: --prefix=/usr --extra-version=0ubuntu0.16.04.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --cc=cc --cxx=g++ --enable-gpl --enable-shared --disable-stripping --disable-decoder=libopenjpeg --disable-decoder=libschroedinger --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzvbi --enable-openal --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-frei0r --enable-libx264 --enable-libopencv
libavutil 54. 31.100 / 54. 31.100
libavcodec 56. 60.100 / 56. 60.100
libavformat 56. 40.101 / 56. 40.101
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 40.101 / 5. 40.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.101 / 1. 2.101
libpostproc 53. 3.100 / 53. 3.100 -
use anullsrc in ffmpeg command
7 juin 2019, par S.TI have ffmpeg command that i want to add anullsrc filter to it
I tried to add the command in different places there but there is always a problem. the command is taking 2 movies and merging them to one movie side by side. the audio is the 2 movies together.
This is the command :
ffmpeg -i loop2.mp4 -i loop1.mp4 -i logo.png -filter_complex "[0:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=black[a] ;[1:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=black[b] ;nullsrc=size=640x480[base] ;[a]setpts=PTS-STARTPTS, scale=320x480[left] ;[b]setpts=PTS-STARTPTS, scale=320x480[right] ;[base][left]overlay=shortest=1[tmp1] ;[tmp1][right] overlay=320:0[video] ;[video]overlay=5:5[videoandlogo] ;[0:a]apad [apa] ;[apa][1:a]amerge=inputs=2,pan=stereo|FL
In the command i have the nullsrc for the video and i want to add also the anullsrc for the audio.
Can some one help ? Thanks.I have a problem when doing this command with the right file (always the right, even if i switched the files), the audio is not synced with the video and i think its because i didn’t use the anullsrc (maybe i am wrong). it happens only on files that i concat them - took one video, and concat it a few times to itself with a different command - loop, and created a new file. the looped video is synced, only the merge is destroying the audio sync (on regular files without loop the sync is good after the merge).
Thanks.