Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (91)

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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4930)

  • Rename files that are beginning with a number to two digits [duplicate]

    9 septembre 2018, par Flavorum1

    This question already has an answer here :

    I have a couple of folders that are audiobooks. The files are numbered and I want to convert them to one file.
    I used the following script to convert them :

       #!/bin/bash
       if [ ! -d mp3 ]; then
       mkdir -p mp3;
       fi;
       for f in ./*.flac; do echo "file '$f'" >> mylist.txt; done
       ffmpeg -f concat -safe 0 -i mylist.txt -b:a 320k mp3/title.mp3
       [ -e mylist.txt ] && rm mylist.txt

    My problem is that I have to rename the first ten files because they are not in the right order. The files are named 1 - Title, 2 - Title, 3 - Title and so on. To get the right order I have to rename them to 01 - Title, 02 - Title, ..., 09 - Title.
    How can I do that with a bash script ? Furthermore it would be nice, if the playlist.m3u file would be changed accordingly.

    Thanks for your help.

    @Cyrus posted the right Link to solve my problem.
    The solved script ist :

    #!/bin/bash
    if [ ! -d mp3 ]; then
    mkdir -p mp3;
    fi;
    for f in ./*.flac; do echo "file '$f'" >> mylist2.txt; done
    sort -V mylist2.txt >> mylist.txt
    rm mylist2.txt
    ffmpeg -f concat -safe 0 -i mylist.txt -b:a 320k mp3/title.mp3
    [ -e mylist.txt ] && rm mylist.txt
  • avformat/matroskadec : Improve frame size parsing error messages

    3 décembre 2019, par Andreas Rheinhardt
    avformat/matroskadec : Improve frame size parsing error messages
    

    When parsing the sizes of the frames in a lace fails, sometimes no
    error message was raised (e.g. when using xiph or fixed-size lacing).
    Only EBML lacing generated error messages (which were wrongly declared
    as AV_LOG_INFO), but even here not all errors resulted in an error
    message. So add a generic error message to catch them all.

    Moreover, if parsing one of the EBML numbers fails, ebml_read_num already
    emits its own error messages, so that all that is needed is a generic error
    message to indicate that this happened during parsing the sizes of the
    frames in a block ; in other words, the error messages specific to
    parsing EBML lace numbers can be and have been removed.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskadec.c
  • Merging TCP and UDP packets using FFmpeg

    18 décembre 2015, par October Gladiolus

    First, i have encoded TCP and UDP packets which are received from different tunnels, i need to decode these packets using FFmpeg. Now, the TCP packets have to be sent to a buffer that feeds the FFmpeg, while the UDP packets are supposed to go directly to the FFmpeg. The question is : does the FFmpeg have the ability to merge the TCP and UDP packets according to their sequence numbers ? or is there any other way to do so. Thanks