Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

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

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

  • avcodec/h264 : use avpriv_find_start_code() in h264_split()

    13 février 2015, par Zhaoxiu Zeng
    avcodec/h264 : use avpriv_find_start_code() in h264_split()
    

    This also allows replacing several literal numbers by named constants
    And it should be faster, the function is not speed relevant though as it is
    generally only called a few times at the streams start.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264_parser.c
  • avformat/bit : only accept the g729 codec and 1 channel

    26 février 2015, par Andreas Cadhalpun
    avformat/bit : only accept the g729 codec and 1 channel
    

    Other codecs/channel numbers are not supported by this muxer.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/bit.c
  • FFmpeg script to convert all existing files in directory

    5 avril 2015, par TopHi

    I have a video website where many of the videos have both an .flv and .mp4 version but not all of them, for example

    /files/videos/video1.flv
    /files/videos/video1.mp4

    I need a script that will convert all .flv files in to .mp4 files .
    I have about lets say 50k videos called with random numbers and digits so its not possible to convert them 1 by 1
    Here is a command that I useed and it works just fine.

    ffmpeg -i /videos/14277419524e6bd.flv -f mp4  -vcodec libx264 -preset slow -r 30 -b:v 300000 -s 1280x720 -aspect 1.7777777777778 -vf pad=0:0:0:0:black -acodec libfaac -ab 128000 -ar 22050  /videos/14277419524e6bd.mp4

    The script must process the conversations one by one and if possible to give me some input so I can know what is going on.