Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (65)

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

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

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

  • Python get wav frames from mp3 file for wave.open -> readframes()

    25 janvier 2017, par spam junk

    I have programmed a little lightshow which reads from .wav files :

    data = wavfile.readframes(chunk)

    but i would like to read mp3 files.

    So i have found various python apis like pymedia (cant quite get it to work) and pyffmpeg (never been worked on since 2015 as the github readme says )
    and i have found this post :

    Python : mp3 to alsaaudio through ffmpeg pipe and wave.open(f,’r’)

    im new to python and im only using it because my lights are controlled in python and im studying
    computer science since last year , so im still learning

    so all in all if someone could reassemble the code from the post for me that would be nice .

    im sorry,
    i would comment on the post but i dont have enough reputation

  • lavf/segment : fix crash when failing to open segment list

    21 janvier 2017, par Rodger Combs
    lavf/segment : fix crash when failing to open segment list
    

    This happens because segment_end() returns an error, so seg_write_packet
    never proceeds to segment_start(), and seg->avf->pb is never re-set,
    so we crash with a null pb when av_write_trailer flushes the packet
    queue.

    This doesn’t seem to be clearly recoverable, so I’m just failing more
    gracefully.

    Repro :
    ffmpeg -i input.ts -f segment -c copy -segment_list /noaxx.m3u8 test-%05d.ts

    (assuming you don’t have write access to /)

    • [DH] libavformat/segment.c
  • FFMPEG Cannot Open The Video File (C#)

    5 décembre 2016, par Landon Conway

    I want to make a software that can read a video file and extract all the frames to get them as bitmaps so I choose to use AForge FFMPEG. However, it does not seem to be working for me as it does for others ! When I try to use ’VideoFileReader.Open’ I get this exeption :

    "An unhanded exeption of type ’System.IO.IOExeption’ occurred in AForge.Video.FFMPEG.dll

    Additional Information : Cannot open the file."

    Regardless of which video file I try to open it does not work. I also tried to run as andministrator since it may not have access to that file.

    I’m using .NET Framework 4.6.1

    Here is my code :

    using AForge.Video.FFMPEG;
    using System;
    using System.Drawing;
    using System.IO;
    using System.Windows.Forms;
    namespace Test_Video_Software
    {
       public partial class
       {
           public Form1
           {
               InitializeComponent();
           }
           private void takeApartToolStripMenuItem_Click(object sender, EventArgs e)
           {
               VideoFileReader vfr = new VideoFileReader();
               vfr.Open(@"C:\Users\LC Creations\Videos\IMG_8722.MOV");
               Bitmap videoFrame = vfr.ReadVideoFrame();
           }
       }
    }

    I looked everywhere on the internet. Even here of coarse. Nobody seems to have had this issue in the past. Any help apreciated.