Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (92)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6128)

  • ffmpeg and gnu parallel

    16 août 2013, par souvik

    My work would require me to encode a few thousand movies in a few days. Each movie needs to be encoded in 3 different formats. I use ffmpeg to output these formats in parallel with a single read of the input source as detailed here : http://ffmpeg.org/trac/ffmpeg/wiki/Creating%20multiple%20outputs

    In addition, I am using GNU Parallel to encode from multiple video files in parallel. We have four blade servers of different configurations (48, 32, 16 and 16 cores) encoding videos in parallel. Ideally, we should be able to encode 112 videos in parallel.

    However, it seems that encoding completes faster on machines with lesser cores. I have 16 completed encodes on the 16 core servers in around 4 hours, while it takes close to 10 hours for 48 encodes to complete on the 48 core system. What could be the bottleneck ? A typical encode command is as follows :

    ffmpeg -i sample.mpg -y -vcodec libx264 -vprofile baseline -level 30 -acodec libfdk_aac -ab 128k -ac 2 -b:v 500K -threads 1  encoded/sample_enc.mp4

    Any pointers highly appreciated. Thanks !

  • HW Accel Transcode Intel Quick Sync Video QSV h264_qsv and CRF Quality

    26 août 2020, par Matt McManis

    I'm having a problem with HW Accel Intel Quick Sync Video and CRF.

    



    It looks like CRF -crf is not compatible with -c:v h264_qsv.

    



    Only Bit Rate -b:v works with -c:v h264_qsv.

    



    ffmpeg -i input.mp4 -c:v h264_qsv -crf 25 -pix_fmt nv12 output.mkv


    




    



    https://trac.ffmpeg.org/wiki/Hardware/QuickSync

    



    The guide says "ICQ mode (which is similar to crf mode of x264)" -global_quality 25

    



    ffmpeg -i input.mp4 -c:v h264_qsv -global_quality 25 -pix_fmt nv12 output.mkv


    



    But I cannot get it to work. I get the error Selected ratecontrol mode is unsupported.

    




    



    How do I get either CRF or ICQ to work ?

    


  • FFMpeg : reencode audio file to have the same codec params as another file [closed]

    11 mars 2023, par EvilOrange

    I need to merge three audio files :

    


      

    • big1
    • 


    • small1
    • 


    • big2
    • 


    


    Codecs in these files may differ (but big1 and big2 which always have the same codec)

    


    small1 is about 20-30 seconds

    


    Now I'm using the following command for that :

    


    ffmpeg -i big1 -i small1 -i big1 -filter_complex concat=n=3:v=0:a=1 -c:a {big1.extension} -vn out.{big1.extension

    


    it's working, but this will require reencoding and it's slow.

    


    I think, that it can be optimized by using concatenation without reencoding : https://trac.ffmpeg.org/wiki/Concatenate

    


    But I need the same codec for all files.

    


    So, now I need the following :

    


      

    1. Get codec information from big1
    2. 


    3. Reencode small1 to the same parameters
    4. 


    5. merge files using concat demuxer without reencoding
    6. 


    


    So, I need a way to get codec information and pass these params to ffmpeg to convert small1.

    


    I'm not tied to ffmpeg, if another linux cmd tool can do the same ( fastly merge three audio files) - it's also acceptable.