Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (61)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (6186)

  • How can I find out what this ffmpeg error code means ?

    3 mars 2015, par Asik

    I’m using the function avcodec_decode_video2. On an encoding change in the stream, it returns -1094995529. The documentation only states :

    On error a negative value is returned, otherwise the number of bytes
    used or zero if no frame could be decompressed.

    But there doesn’t seem to be an enum of return codes or any other form of documentation. What does the error mean and how can I determine that in general ?

  • FFMPEG - avformat_open_input() always return error with filename

    22 septembre 2015, par Tony Than
    const char* filename = "D:\\abc.flv";
    err = avformat_open_input(&ic, filename, NULL, 0);

    This function always returns error when filename is *.flv.
    If I use file mp4 (*.mp4), it’s ok.

    Please help me find the cause of this problem !!

  • FFmpeg stucks for few seconds on start

    7 février 2018, par tarasmorskyi

    I’m trying to cut and resize video on Android(but it is similar on MacOS) , but when I run the ffmpeg command it returns me

    frame= 0 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate=N/A speed=

    It repeats for about 20 sec (I have 4K video with 3 sec duration).

    Is there any way to improve process speed ? Here is example of my ffmpeg command

    ffmpeg -y -i input.mp4 -ss 00:01.82 -to 00:02.94 -vf scale=500:1024 -c:v libx264 -c:a aac -b:v 500k -b:a 96k output.mp4