Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (30)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6700)

  • avcodec/jpeg2000dec : Support progression order changes

    26 juin 2015, par Michael Niedermayer
    avcodec/jpeg2000dec : Support progression order changes
    

    Fixes Ticket4657

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

    • [DH] libavcodec/jpeg2000.c
    • [DH] libavcodec/jpeg2000.h
    • [DH] libavcodec/jpeg2000dec.c
  • List files in a folder in natural order using bash script

    15 janvier 2017, par Vince Leko

    I am trying to merge several flv files using ffmpeg. ffmpeg requires a list of files in this format :

    file '/path/to/file1'
    file '/path/to/file2'
    file '/path/to/file3'

    With some search and trials, I have came up with this one line command :

    ffmpeg -safe 0 -f concat -i &lt;(for entry in "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")"/*.flv;do echo "file '$entry'";done) -c copy output.flv

    The script in brackets will generate a list of paths to all files in current folder in the format that is required by ffmpeg :

    for entry in "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")"/*.flv;do echo "file '$entry'";done

    However, this only list files in alphanumeric order :

    6846641-10.flv
    6846641-11.flv
    6846641-12.flv
    6846641-13.flv
    6846641-14.flv
    6846641-15.flv
    6846641-16.flv
    6846641-17.flv
    6846641-18.flv
    6846641-19.flv
    6846641-1.flv
    6846641-20.flv
    6846641-21.flv
    6846641-22.flv
    6846641-23.flv
    6846641-24.flv
    6846641-2.flv
    6846641-3.flv
    6846641-4.flv
    6846641-5.flv
    6846641-6.flv
    6846641-7.flv
    6846641-8.flv
    6846641-9.flv

    To merge videos correctly, I need files to be listed in natural order like this :

    Naturally ordered files

    enter image description here

    As shown in the picture, files need to be sorted by the number after - from 1 to 24, with 6846641-1.flv in the first line and 6846641-24.flv in the last line. And each line in the format like this :

    file '/mnt/c/Users/Oho/Desktop/save//6846641-xx.flv'

    Would it be possible to generate a correctly formatted list for ffmpeg with bash script (and in one line if achievable) ?

    Edit :
    Thanks to Cyrus, the modified code is here and it does the job :

    #!/bin/bash
    for entry in "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")"/*.flv
    do
       echo "file '$entry'" >> fileOutputList.temp
    done
    sort -t "-" -n -k 2 fileOutputList.temp > fileOutputListSorted.temp
    ffmpeg -safe 0 -f concat -i fileOutputListSorted.temp -c copy output.flv
    rm fileOutputList.temp
    rm fileOutputListSorted.temp
  • Revision 49c5841b2b : Merge "Changing initialization order of mb_to_top_edge & mb_to_bottom_edge" into

    26 mars 2013, par John Koleszar

    Merge "Changing initialization order of mb_to_top_edge & mb_to_bottom_edge" into experimental