Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (108)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (29401)

  • Limit file size in FFmpeg

    26 novembre 2019, par Arete

    The official documentation for FFmpeg says :

    -fs limit_size (output)

    Set the file size limit, expressed in bytes. No further chunk of bytes is written after the limit is exceeded. The size of the output file is slightly more than the requested file size.

    This is very confusing. If the file size is slightly more than the requested file size then I have the following questions :

    1. What determines how much more (than the requested file size) the file will consume ?

    2. How much more will the file exceed the requested file size ?

    3. Is there any way to set the file size exactly ?

    4. What is the point of having the -fs if it does not actually work ?

  • Simulate concatenated file using hard link ?

    16 décembre 2011, par Sugrue

    I have multiple parts of a single file which I want a 3rd party c++/c# plugin to read as a single file. Basically, when the plugin file reader gets to the end of one file-part, I want it to continue to the next one.

    (For anyone interested, the plugin is Aforge.Net FFMpeg, and I am trying to import VOB files)

    It looks like quite a task to reprogram the plugin. An alternative solution is to copy the file parts to a concatenated file, but this is slow because I am dealing with many GBs of data.

    Is it possible to use a file system hard link to point to multiple files ? Or is there some other way to 'fake' a concatenated file ? Using command line FFMpeg I can use 'type' to live stream a concatenate file in, but I can't figure out how to achieve this in c# with this plugin.

    I am on Windows 7.

  • ffmpeg concat particular videos from text file

    29 juin 2022, par tejas netradyne

    i wanted to concat only 1st and 4th video from my txt file 'list_of_videos' where my txt file looks like this :

    


    


    file 'video1.mp4'
    
file 'video2.mp4'
    
file 'video3.mp4'
    
file 'video4.mp4'

    


    


    currently i am able to stitch all videos from 1 to 4 using :

    


        ffmpeg_command= 'ffmpeg -f concat -safe 0 -i %s -c copy %s' % \
                            (
                                list_of_videos,
                                video_path
                            )