Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (63)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (4828)

  • 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