Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (77)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (14666)

  • Linux & C : How to set file reading priority in multi-process program while recording mp4 files

    31 octobre 2017, par bala ece17

    This is for an assignment I’m not looking for you to suggest me the answer. I just need someone to point me in the right direction, maybe with a line or two of sample code.

    I need to figure out how to set the priority of a recording mp4 files within my program. To the point :

    i am trying to record from three cameras (1-HD and 2 analog cameras) at the same time and creating its tar file after each recording of duration 60seconds.

    so after a set of records completed, i am taring those files. in doing that i am experiencing frame skip in only HD camera, remain 2 analog cameras are fine.hence forth i decided to set high priority for recording and low priority for taring those files.

    please suggest me some ideas to set the priority, that neglect the frame skip.

    Any help/guidance is appreciated :)

  • Memory leak when embedding ffmpeg library in Go program

    29 mars 2019, par andrea

    I’m using go version 1.11.2

    I wrote a go project which using ffmpeg C library.

    When I run this program, I tried to print out memory statistic by runtime.ReadMemStat(). What I got is heap allocated memory is always small (2MB in the picture below) but memory used showed by top command increase gradually until my process is killed by OS. It seems Go cannot manage C-allocated memory.

    So what actually happens or what am I misunderstanding here ??

    Appreciate any helps,

    Thanks in advanced,

    • When I stopped the process, memory usage dropped down intermediately.
    • I tried to test C code, there was no leak in C code.
    • I used debug.GC() to force GoGC running and debug.FreeOSMemory() periodically but it was not working.
    • more info about ReadMemStat, https://golang.org/pkg/runtime/#MemStats

    ffmpeg in Go - mem usage

  • How to pass Ruby's STDIN to an external program called by Open3.popen3 ?

    4 septembre 2015, par Konstantin

    I would like to call ffmpeg from a Ruby script, lets call "vpipe", and I want this Ruby script to act as a filter like command : take its input from a pipe. Its only purpose is to select the first audio stream and delete chapters data if exists :

    #!/usr/bin/ruby
    require "open3"

    output_file=ARGV[0]

    cmd=%Q{ffmpeg -y -i - -map 0:v -map 0:a -c:v copy -c:a:0 copy -map_chapters -1 #{output_file}}

    Open3.popen3(cmd,:stdin_data=>STDIN)

    Then I would like to call my program as follows :

    curl http://www.example.com/video.wmv | vpipe processed.wmv

    Unfortunately doesn’t work, because there is no such an option for popen3 as :stdin_data. I also tried Open3.capture3 which can take this argument, but then I got en error message from curl : "Failed writing body".