Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (93)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La 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 (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11533)

  • how to do mp4 stitching live

    19 avril 2015, par ldpm

    I want to do live mp4 video stitching on a site with javascript. I have looked ad ffmpeg and it looks awesome there is even a javascript version so that would solve this. But ffmpeg asm js weights 25 MB which would slow down the site a lot.

    I want to either :

    1) write a mp4 joiner in javascript from scratch but I am not able to find any good documentation about mp4 format

    2) strip ffmpeg javascript version to the bare minimum code required to join mp4 files but I am struggling to understand the ffmpeg lib structure or find good internal documentation

    any help will be greatly appreciated !

  • lavfi/delogo : take SAR into account

    1er juillet 2013, par Jean Delvare
    lavfi/delogo : take SAR into account
    

    When interpolating, weights are based on relative distances, which
    assume square pixels. If a non-1:1 sample aspect ratio is used, it
    should be taken into account when comparing distances, because the
    human eye and brain care about the picture as it is displayed, not
    stored.

    Signed-off-by : Jean Delvare <khali@linux-fr.org>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_delogo.c
  • Converting avi to mp4 with ffmpeg

    27 octobre 2013, par Juddy Swaft

    I use php code :

    $ffmpeg_command ="ffmpeg -i ".$new_name." -s 1280x720 -ar 44100 -async 44100 -r 29.970 -ac 2 -qscale 5 ".$anew_name;
    $convert_avi = true;

    i know that the problem is in here :

    -s 1280x720 -ar 44100 -async 44100 -r 29.970 -ac 2 -qscale 5

    EDIT2 :
    My ffmpeg info with installed libx264 :

    http://www.part.lt/img/6459c908d41d2c4ce7a9294db1f134df613.PNG

    EDIT 3 : OK this is confusing becose i have just tried convert via putty i used :

    ffmpeg -i movie.avi -acodec libmp3lame -vcodec libx264 -s 1280x720 -ar 44100 -async 44100 -r 29.970 -ac 2 -qscale 5 goodmovie.mp4

    and it converted well just weights 6mb original one was 1.8mb, so i uploaded to my ftp via upload script and it worked now im sure that problem is not in the server anymore is in my php code but i dont know how to fix it :/