Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (105)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (18399)

  • Create a silent mp3 from the command line

    2 juillet 2015, par Stephen

    I am trying to create a silent / empty mp3 of (x) seconds using the command line. Quite a simple task I thought !

    It seems lame is able to do somethign like this but I am unable to find anything that leads to achieving this.

    Has anyone been able to do something like this ?

  • How to use MLT Framework through command line ?

    29 juin 2016, par Aman sinha

    I am new with video editing. I want to use the MLT framework through command line in order to edit thousands of video.
    I am unable to install the framework. Can anyone help me with the installation process ?

  • How to read sei by command line of ffmpeg

    28 avril 2021, par glowry

    How to read sei by command line of ffmpeg.
e.g.

    


    ffmpeg -i INPUT -c:v copy -bsf:v filter1[=opt1=str1:opt2=str2][,filter2] OUTPUT


    


    I know bsf can modify the sei, but it can't read sei.

    


    If the command line can't solve it, plase give me some demo by api of ffmpeg.

    


    For example.

    


    I insert a h264_metadata to file.

    


    ffmpeg -i original.mp4 -c copy -bsf:v h264_metadata=sei_user_data='086f3693-b7b3-4f2c-9653-21492feee5b8+hello' file_with_h264_metadata.mp4


    


    and then I push it to rtmp

    


    ffmpeg -re -i ./file_with_h264_metadata.mp4 -vcodec h264 -f flv  rtmp://127.0.0.1:1935/live/h264_metadata


    


    How can I extact the h264_metadata with ffmpeg command line ?

    


    I have try this, but it does not work

    


    ffmpeg -i rtmp://127.0.0.1:1935/live/h264_metadata -c:v copy -bsf:v h264_metadata -f null -