Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (102)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9269)

  • ffmpeg returns 'frame_pts' as unrecognized option

    25 janvier 2018, par Hélder

    Earlier today I posted a question about frame extration with keyframes per encoding order (here) and I tried to run the command provided in one of the answers but ffmpeg returns :

    Unrecognized option 'frame_pts'.

    Error splitting the argument list : Option not found

    Any clue how to make ffmpeg to recognize ’frame_pts’ option ?
    The full command that I ran is :

    ffmpeg -i input.mp4 "select='eq(pict_type\,I)" -vsync 0 -frame_pts 1 thumbnails-%02d-I.png
  • ffmpeg Unrecognized option 'tune'

    27 décembre 2016, par sangjun

    I’m using ffmpeg on node.js. And option ’-tune zerolatency’ for low latency

    But when I insert "-tune zerolatency", I get an error : Unrecognized option ’tune’.

    Can anyone help ? I have no idea what to do.

    Here’s the script.

    let token = '@!#!@#%@$@#%#^^!@$@#$@#$@#$^@#$'
    let option = [
       '-i', 'pipe:0', //mpeg4
       '-acodec', 'copy',
       '-vcodec', 'copy',
       '-s', '284x164',
       '-preset', 'ultrafast',
       '-tune', 'zerolatency',
       '-f', 'flv',
       'rtmp://localhost:1935/s/' + token,
    ];
    ffmpeg = spawn("ffmpeg", option);

    ffmpeg.stdin.write(streaming_data);

    Here’s the ffmpeg version

    ffmpeg version N-82166-g894e7ef Copyright (c) 2000-2016 the FFmpeg developers
     built with gcc 4.8.3 (GCC) 20140911 (Red Hat 4.8.3-9)
     configuration: --prefix=/usr/local/ffmpeg_build --extra-cflags=-I/usr/local/ffmpeg_build/include --extra-ldflags=-L/usr/local/ffmpeg_build/lib --bindir=/usr/local/bin
     libavutil      55. 35.100 / 55. 35.100
     libavcodec     57. 65.100 / 57. 65.100
     libavformat    57. 57.100 / 57. 57.100
     libavdevice    57.  2.100 / 57.  2.100
     libavfilter     6. 66.100 /  6. 66.100
     libswscale      4.  3.100 /  4.  3.100
     libswresample   2.  4.100 /  2.  4.100
  • react-native-ffmpeg Unrecognized option 'preset'

    8 avril 2021, par Tommy Khumarga

    Below is my ffmpeg command :

    


    -y -i vidInput.mp4 -vcodec mpeg4 -b:v 1000k -b:a 48000 -preset ultrafast vidOutput.mp4

    


    And the result is :

    


    [Mon Jul 06 2020 20:42:08.171]  LOG      Unrecognized option 'preset'.
[Mon Jul 06 2020 20:42:08.172]  LOG      Error splitting the argument list:
[Mon Jul 06 2020 20:42:08.174]  LOG      Option not found


    


    Need advice...