
Recherche avancée
Autres articles (55)
-
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. (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6762)
-
ffmpeg is dropping frames of second video in concat
17 juin 2018, par bugwheels94I did a screen share and when sharing the screen I minimized the sharing window so the video that I am sharing has some thing weird going on. Seeking does not work on mplayer but works on VLC. However, when doing the concat
ffmpeg -i test.webm -f lavfi -i color=c=blue:s=1366x768:d=71 \
-filter_complex "[0]scale=w='min(1366\, iw)':h='min(768\, ih)':force_original_aspect_ratio=decrease,\
pad=width=1366:height=768:x=(ow-iw)/2:y=(oh-ih)/2,setsar=1/1[v1];\
[1][v1]concat=n=2[v]" -map [v] -qscale 7 result.mp4The webm video of length 155 seconds is not showing complete. Ideally the result should be 71 + 156 = 227 but I am getting 155 seconds and the webm video of concat being cropped.
If I reverse the concat order to
[v1][1]concat=n=2[v]
then everything is perfect at 227 secondsDownload test.webm
May you please tell me about what might be wrong here ? Thanks
-
Python Windows 10 64bit - FFMPEG for trackpy
3 décembre 2018, par Cam KSimilar problem to ’Python Moviepy installation problems (windows 7x64)’ except the solution provided did not work.
I have windows 10, 64bit. Every time I attempt to run the following line of code :
frames = pims.Video('exp9_short.avi')
I get the blue Windows 10 error : This app can’t run on your PC
as well as the Python error :
OSError: Could not load meta information
=== stderr ===
Access is denied.I have tried multiple versions from ’https://ffmpeg.zeranoe.com/builds/’ to no avail.
I don’t know if other image processing tools will work with trackpy, or if there are any alternatives to trackpy.
I would really appreciate some advice.
-
taking time stamped sequence of images from a video using ffmpeg
11 septembre 2012, par user1662322How should I take time stamped images from a video using ffmpeg ?
for example ;image-0001 --> 0:00:00.0000
image-0002 --> 0:00:01.0000
image-0003 --> 0:00:02.0000
.....I have tried ;
ffmpeg -i input.flv -ss 00:00:00.0000 -r 1 image%4d.jpg
But it seems that using this code, ffmpeg does not take exactly one picture per second and the time of the taken pictures can not be calculated accurately from the image file number.