Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (45)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6899)

  • split video into specific lengths using ffmpeg [duplicate]

    23 juillet 2021, par david

    I am trying to split a video into specific lengths (2 sec the same as GOP) using the following command :

    


    ffmpeg -y -i 1.mp4  -f hls -hls_time 2 -hls_list_size 0 -hls_flags single_file  NUL &&\


    


    but it produces the following error :

    


    '\' is not recognized as an internal or external command, operable program or batch file.


    


    I am new to FFmpeg and I do not know what is the problem. do you know why this error has happened ?

    


  • Using ffmpeg to split videos into frames doesn't work

    28 décembre 2018, par אבנר יעקב

    In my code i’m trying to split video to frames using ffmpeg.

    for this I’m using this code

    experiments = ['iguazu.mp4', 'boat.mp4']

    for experiment in experiments:
       exp_no_ext = experiment.split('.')[0]
       os.system('mkdir dump')
       os.system('mkdir dump\%s' % exp_no_ext)
       os.system("ffmpeg -i videos\%s dump\%s\%s%%03d.jpg" % (experiment,
    exp_no_ext, exp_no_ext))

    So in visual studio code it’s working perfect but in visual studio community the line "os.system("ffmpeg -i videos\%s dump\%s\%s%%03d.jpg" % (experiment,
    exp_no_ext, exp_no_ext))" showing error "ffmpeg is not recognized as an internal or external command".

  • Android, split gif to frames with ffmpeg

    9 octobre 2016, par P. Ilyin

    I need to split my gif file to separate frames of any format (gif, png, doesnt matter).

    ffmpeg -i path/to/gif -c:v gif -f image2 path/to/output$03d.gif

    this command really splits gif to frames, but only first frame have a normal quality. All other frames looks like some damaged images

    enter image description here

    library I use is com.writingminds:FFmpegAndroid:0.3.2

    What should Ido to get all frames with normal quality