Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (89)

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

  • 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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8901)

  • Videos converted using FFMPEG do not have video duration information

    6 mars 2016, par Harshad M

    I am using FFMPEG to convert uploaded videos to .flv, after conversion the flv video doesn’t have information about it’s duration. So the user cannot rewind/forward, replay or see a specific part of it. The code is as follows :

    "ffmpeg -i $srcfile_path -s 320x240 -ar 44100 -b 2048k -r 12 $desfilepath" ;
    

    Please help. Thanks in advance.

  • FFmpeg transcoding stretches Vertically recorded videos

    28 juin 2017, par oteamm

    Hi I am having an issue with the Transcoder (FFmpeg) .

    Problem Details :
    Vertically recorded videos are appearing stretched (widened) upon transcode.

    For videos which are recorded vertically (height is more than width), the transcoded video generated does shrink vertically. If we change the aspect ratio for such files it will ruin the other video transcodes for which the transcode is generating correctly.

    Expected Behaviour :
    should not shrink/stretch vertically recorded videos

    Impact :
    we are seeing a distorted version of video, stretched horizontally

    Notes :
    Version of FFmpeg Software that you’re is used : - ffmpeg-2.8.6-win64
    (default Settings used)

    Request :
    Need to a way to correct this as if we change the aspect ratio for such files it will ruin the other video proxies for which the proxy is generating correctly.
    Please suggest, if there is any way to AUTO select the aspect ratio of original file and generate transcode accordingly. Thanks !

  • Combine/Concatenate 3 videos with crossfade

    29 septembre 2016, par Zalon

    I wan’t to combine 3 videos using ffmpeg, and have a crossfade between the videos. I’ve been able to do this with 2 videos using the code below.

    What I would like to do is have a end result like this :

    intro
    <crossfade>
    video
    <crossfade>
    outro
    </crossfade></crossfade>

    Can someone help me convert this code to be used with 3 videos ?

    ffmpeg -i intro.mp4 -i video.mp4 -an \
    -filter_complex \
    "   [0:v]trim=start=0:end=9,setpts=PTS-STARTPTS[firstclip];
       [1:v]trim=start=1,setpts=PTS-STARTPTS[secondclip];
       [0:v]trim=start=9:end=10,setpts=PTS-STARTPTS[fadeoutsrc];
       [1:v]trim=start=0:end=1,setpts=PTS-STARTPTS[fadeinsrc];
       [fadeinsrc]format=pix_fmts=yuva420p,
                   fade=t=in:st=0:d=1:alpha=1[fadein];
       [fadeoutsrc]format=pix_fmts=yuva420p,
                   fade=t=out:st=0:d=1:alpha=1[fadeout];
       [fadein]fifo[fadeinfifo];
       [fadeout]fifo[fadeoutfifo];
       [fadeoutfifo][fadeinfifo]overlay[crossfade];
       [firstclip][crossfade][secondclip]concat=n=3[output];
       [0:a][1:a] acrossfade=d=1 [audio]
    " \
    -map "[output]" -map "[audio]" result.mp4