Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (77)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (7718)

  • How do i convert a transparent .mov-file to an mp4 file overlayed on a background-image using FFMPEG [migrated]

    5 mars 2013, par Ernie

    I'm trying to convert a mov file with the following specs :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'test.mov':
    Metadata:
       major_brand     : qt  
       minor_version   : 537199360
       compatible_brands: qt  
       creation_time   : 2012-10-09 13:34:01
    Duration: 00:00:51.60, start: 0.000000, bitrate: 217433 kb/s
       Stream #0:0(eng): Video: prores (ap4h / 0x68347061), yuv444p10le, 1920x1080, 215844 kb/s, SAR 1:1 DAR 16:9, 25 fps, 25 tbr, 25 tbn, 25 tbc
       Metadata:
           creation_time   : 2012-10-09 13:34:01
           handler_name    : Apple Alias Data Handler
           timecode        : 01:00:00:00
       Stream #0:1(eng): Audio: pcm_s16le (sowt / 0x74776F73), 48000 Hz, stereo, s16, 1536 kb/s
       Metadata:
           creation_time   : 2012-10-09 13:34:01
           handler_name    : Apple Alias Data Handler
       Stream #0:2(eng): Data: none (tmcd / 0x64636D74)
       Metadata:
           creation_time   : 2012-10-09 13:42:30
           handler_name    : Apple Alias Data Handler
           timecode        : 01:00:00:00

    I want a background-image with that video on top of it and save it as an mp4-file. In the meantime the video has to be scaled and cropped
    I need a solution which can be automated and placed on a server, that is why i tried ffmpeg

    This is wat have at the moment :

    ffmpeg -loop 1 -f image2 -i background.png -r 25 -an -vcodec libx264 -b:v 1500k -vf "movie=test.mov[movie];[movie]scale=max(552\, 420*iw/ih):-1[OUT1]; [OUT1]crop=552:420[OUT2]; [0][OUT2] overlay=0:0 [out]" -s 552x420 -y output.mp4

    The problem is, somehow, the transparency is lost, and the background is black, instead of the underlying image. When i try the same ffmpeg command with a transparent FLV as input, it works, but i would like it to work without having to convert al source files first to another format

    Any help with this would be greatly appreciated !

    This is my current ffmpeg configuration :

    ffmpeg version 1.1.2 Copyright (c) 2000-2013 the FFmpeg developers
    built on Mar  4 2013 11:19:29 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn)
    configuration: --prefix=/opt/local --enable-swscale --enable-avfilter --enable-libmp3lame --enable-libvorbis --enable-libopus --enable-libtheora --enable-libschroedinger --enable-libopenjpeg --enable-libmodplug --enable-libvpx --enable-libspeex --enable-libfreetype --mandir=/opt/local/share/man --enable-shared --enable-pthreads --cc=/usr/bin/clang --arch=x86_64 --enable-yasm --enable-gpl --enable-postproc --enable-libx264 --enable-libxvid --enable-nonfree --enable-libfaac
       libavutil      52. 13.100 / 52. 13.100
       libavcodec     54. 86.100 / 54. 86.100
       libavformat    54. 59.106 / 54. 59.106
       libavdevice    54.  3.102 / 54.  3.102
       libavfilter     3. 32.100 /  3. 32.100
       libswscale      2.  1.103 /  2.  1.103
       libswresample   0. 17.102 /  0. 17.102
       libpostproc    52.  2.100 / 52.  2.100
  • Http live streaming for ipad, iphone and safari

    23 février 2013, par Riyas Anchal

    Anyone help me to find a solution to stream a video from a mac server to iPad, iPhone and mac safari using HTTP live streaming.

    Steps taken :

    1. Installed and configured FFMPEG for encoding
    2. installed the mediasegmenter provided by the Apple.

    The ffmpeg option used is

    ffmpeg -y -i input.mp4 -acodec aac -ar 48000 -ab 128k -ac 2 -s 1024×768 -vcodec libx264 -b 1200k -flags +loop+mv4 -cmp 256 -partitions +parti4x4+partp8x8+partb8x8 -subq 7 -trellis 1 -refs 5 -coder 0 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -bt 1200k -maxrate 1200k -bufsize 1200k -rc_eq 'blurCplx^(1-qComp)' -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -level 30 -aspect 4:3 -r 30 -g 90 -async 2 output.mp4

    I have tried different ffmpeg options to stream the video.In some options it works in Iphone and Safari browser in mac machine, but I didn't get an option for iPad.

    I want to stream an mp4 video for ipad, iPhone and mac safari. I also tried it with opensource segmenter .

    Have any solution for this ?

    Thanks,

    Riyas

  • Android ffmpeg : create video from sequnce of images using jni

    13 novembre 2013, par Sameer Z.

    I have successfully build ffmpeg for Android and now i need to create video from sequence images so it look like animation video with some default audio.I have found some solution but it all says using command like.

    If anyone know how to do same thing using jni on Android then please let me know.

    Thanks in Advance.