Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (39)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6683)

  • ffmpeg : packet size 2073600 expected frame_size 4147200

    18 avril 2020, par mrana

    I have total 96 videos. I have converted most of videos using ffmpeg, 
but for some videos its giving me some error. 
As a first step I deinterlaced the video using the following command :

    



    ffmpeg -video_size 1920x1080 -r 25 -pixel_format yuv422p -i stockholm.yuv -vf yadif  stockholm_deInt.yuv


    



    And I am getting the following error :

    



    


    [rawvideo @ 0x7fa144008c00] Invalid buffer size, packet size 2073600 < expected frame_size 4147200
    &#xA; Error while decoding stream #0:0 : Invalid argument&#xA; frame= 187 fps=3.7 q=-0.0 Lsize= 757350kB time=00:00:07.48 bitrate=829440.0kbits/s
    &#xA; video:757350kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : 0.000000%

    &#xA;

    &#xA;&#xA;

    When I try to get the info about the video (ffprobe stockholm.yuv) I get the following :

    &#xA;&#xA;

    &#xA;

    [IMGUTILS @ 0x7fff5bac8140] Picture size 0x0 is invalid
    &#xA; [IMGUTILS @ 0x7fff5bac8150] Picture size 0x0 is invalid
    &#xA; [rawvideo @ 0x7fbcb200da00] Could not find codec parameters for stream 0 (Video : rawvideo (I420 / 0x30323449), yuv420p, -4 kb/s) : unspecified size
    &#xA; Consider increasing the value for the 'analyzeduration' and 'probesize' options&#xA; stockholm.yuv : Operation not permitted`

    &#xA;

    &#xA;&#xA;

    Does anyone have any idea ?

    &#xA;

  • avcodec/bsf : Add ff_bsf_get_packet_ref() function

    28 juillet 2016, par Jan Sebechlebsky
    avcodec/bsf : Add ff_bsf_get_packet_ref() function
    

    Use of this function can save unnecessary malloc operation
    in bitstream filter.

    Signed-off-by : Jan Sebechlebsky <sebechlebskyjan@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/bsf.c
    • [DBH] libavcodec/bsf.h
  • Using FFMPEG on AWS lambda

    16 juillet 2015, par Andy Maddio

    I’m trying to use ffmpeg with AWS lambda.
    I followed some guidelines like :

    AWS Lambda making video thumbnails
    or
    https://github.com/binoculars/aws-lambda-ffmpeg

    But still not working on my environment.
    FFMpeg is not found or I can’t run it, and I don’t understand why ...

    I got this kind of error :

    /bin/sh: ffmpeg: command not found

    My folder looks like this :

    -rw-rw-r-- 1 slicer 497 2474        Jul 16 2015     app.js
    -rw-rw-r-- 1 slicer 497 31245520    Jul 15 07:08    ffmpeg
    drwxrwxr-x 4 slicer 497 4096        Jul 16 05:22    node_modules

    In the app.js, I’m calling ffmpeg like this :

    var exec = require('child_process').exec;
    var process = exec('ffmpeg -i "http://..." -filter:v "select=not(mod(n\\,25)),setpts=N/((25/1)*TB)" -vsync 0 -s 1600x900 -f image2 "Thumb_%06d.jpg"', {}, function (error, stdout, stderr) {
       });

    I tried with

    process.env['PATH'] = process.env['PATH'] + "/" + process.env['LAMBDA_TASK_ROOT']

    Same error and the command "ls -l" is not more available ...
    I tried to change the permissions on the ffmpeg file, with chmod 755 but I don’t have the permission "operation not permitted"

    I upload the zip file with Visual Studio 2013 and AWS Toolkit and I downloaded the FFMpeg file on the johnvansickle website

    What I supposed to do ? What’s wrong with my solution ?

    Thank you,