Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (66)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5802)

  • Ubuntu FFMPEG dynamic image file name

    31 juillet 2018, par JakeDigsForAnswers

    I currently have a directory full of a variety of mp4 files, and I am currently able to loop through the whole directory and screen caps at every five second interval. Currently, the command names them starting at "00000001.png" and increments for the next screen cap, but I would like it to use the file name along with the numbers being appended. I attempted to re-use the "$file" variable, but I get an odd error from running the loop.

    Command :

    for file in /datadrive/video_repo/ffmpeg_tmp/*.mp4; do /usr/bin/ffmpeg -i "$file" -r 0.5 /datadrive/image_repo/"${file%.}".%8d.png; done

    But I get the following error at runtime :

    Could not open file : /datadrive/image_repo//datadrive/video_repo/ffmpeg_tmp/testvideo00000001.png
    av_interleaved_write_frame(): Input/output error

    It looks like the output location is getting confused with the input for some reason. However, if I remove "${file%.}", it runs fine.
    (The reason I use "$file%.", is because it uses the files name, and omits the extension).

    Any help on this would be very appreciative.

  • Windows 8 App, run process

    26 juin 2013, par DoomStone

    Is it possible to run an external exe file in a Windows 8 Store App, the reason for this is that i want to do some video convertion with ffmpeg though the app.

  • Refactor libavutil/parseutils.c

    23 mars 2016, par Petru Rares Sincraian
    Refactor libavutil/parseutils.c
    

    All tests were in the main method which produces a long main. Now, each test
    is in his own method.

    I think this produces a more clear code and follows more with the main
    priority of FFmpeg "simplicity and small code size"

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/parseutils.c