Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (74)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à 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) (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8730)

  • avformat/mxfdec : add some essence container uls from SMPTE draft

    9 juin 2018, par Marton Balint
    avformat/mxfdec : add some essence container uls from SMPTE draft
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfdec.c
  • FFmpeg commands work for root only(centos 6.10)

    20 mars 2019, par Prashant Hanamghar

    I have dedicated server. I have installed FFmpeg on my root. All commands related to FFmpeg works if I logged in as root but no command is working if I logged in as user. I have tried adding one user to sudoers also. Also I want to use FFmpeg commands in PHP shell_exec() or exec(). Can someone tell me the solution. Thanks in advance.

    user command :

    $ ffmpeg

    output :

    -bash: ffmpeg: command not found

    root command :

    $ ffmpeg

    output

    ffmpeg version N-93394-g14eea7c Copyright (c) 2000-2019 the FFmpeg
    developers
    built with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-23)
    configuration: --prefix=/root/ffmpeg_build --pkg-config-flags=--static --
    extra-cflags=-I/root/ffmpeg_build/include -
    -extra-ldflags=-L/root/ffmpeg_build/lib --extra-libs=-lpthread --extra-
    libs=-lm --bindir=/root/bin --enable-gpl --enab
    le-libfdk_aac --enable-libfreetype --enable-libmp3lame --enable-libopus --
    enable-libvpx --enable-libx264 --enable-libx
    265 --enable-nonfree
    libavutil      56. 26.100 / 56. 26.100
    libavcodec     58. 47.103 / 58. 47.103
    libavformat    58. 26.101 / 58. 26.101
    libavdevice    58.  6.101 / 58.  6.101
    libavfilter     7. 48.100 /  7. 48.100
    libswscale      5.  4.100 /  5.  4.100
    libswresample   3.  4.100 /  3.  4.100
    libpostproc    55.  4.100 / 55.  4.100
    Hyper fast Audio and Video encoder
    usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options]
    outfile}...

    Use -h to get full help or, even better, run 'man ffmpeg'
  • Add 2 watermark with scale2ref 40 percent width of video and timeout using FFmpeg

    3 septembre 2020, par Arun Maurya

    Add 2 watermark with scale2ref 40 percent width of video and timeout using FFmpeg

    &#xA;

    timeout for the top right corner (first 8 sec) then the bottom right corner till the end time.

    &#xA;

    ffmpeg -i 1597739850_368007908.mp4 -i artistsharleen.png -i artistsharleen.png -filter_complex "[1][0scale2ref=w=&#x27;iw*40/100&#x27;:h=&#x27;ow/mdar&#x27;[wm][vid];[vid][wm]overlay=10:40:enable=&#x27;between(t,0,8)&#x27;"[v1];[v1][2]scale2ref=w=&#x27;iw*40/100&#x27;:h=&#x27;ow/mdar&#x27;[a][b];[b][a]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=&#x27;gt(t,8)[v2]" -map "[v2]" -map 0:a 17780739871599156232.mp4

    &#xA;

    I'm able to place 2 watermarks with keyframe

    &#xA;

    ffmpeg -i video.mp4 -i image2.png -i image2.png -filter_complex "[0][1]overlay=10:10:enable=&#x27;between(t,0,8)&#x27;[v1];[v1][2]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=&#x27;gt(t,8)&#x27;[v2]" -map "[v2]" -map 0:a output.mp4

    &#xA;

    but my images are not getting scaled as per video resolution, that's why i want to integrate scale2ref in this command

    &#xA;

    Hope someone also faces this problem, can help me.

    &#xA;