Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (35)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5484)

  • Revision fee045d13a : Disable adaptive pred filter for non-split mode If sf->disable_split_mask is DI

    24 février 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_onyx_if.c



    Disable adaptive pred filter for non-split mode

    If sf->disable_split_mask is DISABLE_ALL_SPLIT, disable
    sf->adaptive_pred_interp_filter to avoid unnecessary operations.

    Change-Id : Icb59174b2f4e9a3c3c16a696deb8018e5bd999eb

  • Split audio in segments on silence with ffmpeg

    28 mars 2020, par Maral

    I’m trying to automatically split audio files in 5min segments without splitting words and by splitting on silent parts.
    Do you know any ways to do this ?

    Is there a way I can combine these 2 scripts and also make the duration of the splits less than (around) 5 mins ?

    ffmpeg -i filename -af silencedetect=noise=-30dB:d=0.5 -f null - 2

    and

    ffmpeg -i test.mp3 -ss 00:00:20 -to 00:00:40 -c copy -y temp.mp3

    I tried using these in my Go code like this, but it looks like it isn’t the right way.

    package main


    import (
    "fmt"
    "os/exec"
    "os"
    "io/ioutil"
    "log"
    )

    func main() {
    filename := "test.wav"
    args := []string{"-i", filename, "-af", "silentdetect=noise=-30dB:d=0.5","-f", "null", "-","2>", "output.txt"}
       cmd := exec.Command("ffmpeg", args...)
       errcmd := cmd.Run()
       if errcmd != nil {
           fmt.Println(errcmd)
           fmt.Println("problem detecting silence")
       } else {
           fmt.Println("silence detected")
       }

    file, err := os.Open("output.txt")
       if err != nil {
           fmt.Println(err)
       }

    body, readErr := ioutil.ReadAll(file)
       if readErr != nil {
           log.Fatal(readErr)
       }

    //somehow read silent start time and end time from the file and split

    }
  • bink : Split read_dct_coeffs()

    5 juillet 2017, par Diego Biurrun
    bink : Split read_dct_coeffs()
    

    This works around type aliasing violations and related warnings.
    Also add some missing error checking.

    • [DBH] libavcodec/bink.c