Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (97)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • Concatenation not working in ffmpeg for unknown reason

    5 janvier 2021, par Jimmy Bungalo

    i'm trying to concatenate 2 videos in ffmpeg, using ffmpeg -y -f concat -safe 0 -i /path/to/mylist.txt -c:v libvpx-vp9 -c:a libopus output.webm, in which mylist.txt is

    


    file /path/to/file.mp4
file /path/to/file.mkv


    


    and the output is

    


    [concat @ 0x7b53638000] Line 1: unknown keyword 'file' /path/to/mylist.txt: Invalid data found when processing input


    


    i also tried using "concat:file.mp4|file.mkv" but it just replicated file.mp4
my question is, what is the problem here ? the method i used is verified on ffmpeg's website

    


  • configure : Combine dynamicbase and nxcompat checks

    26 septembre 2015, par Alex Smith
    configure : Combine dynamicbase and nxcompat checks
    

    They were added to binutils in the same version so it’s safe to combine.

    Signed-off-by : Alex Smith <theryuu@warpsharp.info>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure
  • How to increase video encoding speed in ffmpeg ?

    16 octobre 2017, par Ashutosh Tiwari

    I am recording video clips and then joining all the clips in a final video.
    Everything goes fine but the joining process takes too long.

    Tried to using some ffmpeg filters from here :
    https://trac.ffmpeg.org/wiki/Encode/H.264

    And here is my ffmpeg command that I am using to increase the speed (which seems to be wrong) :

    command = new String[]{"-y",
                   "-f",
                   "concat",
                   "-safe",
                   "0",
                   "-i",
                   "/storage/emulated/0/DCIM/my_file.txt",
                   "-c:v",
                   "-preset",
                   "fast",
                   "-crf",
                   "22",
                   "copy",
                   "-flags",
                   "+global_header",
                   "/storage/emulated/0/DCIM/SampleApp/" + videoOutputPath
           };

    Please help ! Thanks much.