Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (78)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (12594)

  • ffmpeg limit audio sample rate

    8 mars 2019, par Ben Schmidt

    in order to save space on my home NAS I want to convert plenty of different videos to more efficient codes.

    Is there a way to limit the sampling rate to 44 100Hz in order to convert 48 000Hz to 44.1kHz but to keep Videos with 22 050Hz at that sampling rate ?

    The only solution I came up with is to use something like medainfo or "mplayer -vo null -ao null -frames 0 -identify $1 | grep ID_AUDIO_RATE" to get the sampling rate and decide what option to set.

    Is there a smarter, more elegant way ?

    Thanks in advance
    Ben

  • ffmpeg encode tiff to h265- error At least one output file must be specified

    8 février 2018, par Orel Pechter

    I need to convert tiff images into h265 file.
    I’m using the following command :

    ffmpeg -y -framerate 30 -i input.tiff -c:v libx265 -x265-params no-open-gop=1:min-keyint=4:keyint=4:bitrate=60 -preset medium -f ssegment -segment_time %ST% "outputfile.265" 2>&1

    I get an output of "error At least one output file must be specified".
    What am i missing ?
    Is there anything i need to do to activate my use of 265 ?
    Im using ffmpeg vs.3.4.1

    Thanks in advance !

  • Muxing only audio into MP4 ffmpeg failed

    9 août 2015, par Kaidul Islam

    I am trying to write audio encoded packets into a MP4 container.I have followed this sample code and instead of creating dummy frame, I am feeding real G.711 PCMU encoded frame into ffmpeg. The writing seems working and file size is increasing, but the mp4 is not playing using ffplay or in VLC player.

    Thanks in advance !