Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (85)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5731)

  • 2 video decoding with same bitrate android inspired from grafika/fadden

    9 mars 2016, par Bee

    How to do double decoding(2 videos decoding) with same bit rate android ? I mean I want to play 2 videos in 2 different views but syncronisedly. I found this grafika double decoder. But it is not with same bitrate.
    The documentation says that.
    Any one know any sample project or guideline that I can follow ? Or maybe just can illustrate the steps I have to do ? May be used ffmpeg or something else ? Can anyone plese help me ?

  • Get frames of the video and perform modifications in that frame in android

    22 juin 2015, par Naresh Sharma

    I need to get the frames a video and do some modification on it like drawing something on it or write some text. Then on saving I need that video with that modifications.

    Please suggest me the best way to do that. Any help is appreciated.

    Please see the below app for to understand my problem

    https://play.google.com/store/apps/details?id=com.techsmith.apps.coachseye.free

  • C# Cloud Function (System Packages Included in Cloud Functions not loading)

    10 avril 2023, par Robert Meli

    I am new to cloud functions, and I'm trying to load the FFMPEG system package included in ubuntu (System Packages Included in Cloud Functions | Cloud Functions Documentation | Google Cloud)

    


    Currently i am trying to load the FFMPEG system package like this : Process.Start("ffmpeg",$"-i {temp_input_file} -vn -acodec wav {temp_output_file}"); but i am getting this error

    


    An error occurred trying to start process 'ffmpeg' with working directory '/layers/google.dotnet.publish/publish/bin'. No such file or directory


    


    I did this with python and it worked fine but i have a requirement to work with C#.

    


    Thanks.

    


    I tried Process.Start("ffmpeg",$"-i {temp_input_file} -vn -acodec wav {temp_output_file}");

    


    I need it to convert from MP4 to WAV in c# using google cloud function.