Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (80)

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

  • Merge commit ’e6fb844f7b736e72da364032d251283bce9e63ad’

    20 avril 2015, par Michael Niedermayer
    Merge commit ’e6fb844f7b736e72da364032d251283bce9e63ad’
    

    * commit ’e6fb844f7b736e72da364032d251283bce9e63ad’ :
    Implement shared parsing of INFO tag in Canopus family

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

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/canopus.c
    • [DH] libavcodec/canopus.h
    • [DH] libavcodec/cllc.c
    • [DH] libavcodec/hqx.c
  • Why can I run this command from the terminal but I get an error when my python runs it from the terminal for me ?

    9 mai 2019, par mu234

    I’m trying to write a python script that basically captures webcam videos from the terminal. When I put the command in a string and use subprocess.call(script, True), I get an error, but when I literally copy/paste the same command to the terminal it works fine.

    This is my python :

    import subprocess
    import os
    if (os.path.isdir("Videos/Webcam/temp") is False):
       dirmake = 'mkdir Videos/Webcam/temp'
       subprocess.call(dirmake, True)
    cmd = 'ffmpeg -f v4l2 -i /dev/video0 -t 00:00:10 video.webm'
    subprocess.call(cmd, True)

    and this is the error

    `FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg -f v4l2 -i /dev/video0 -t 00:00:10 video.webm': 'ffmpeg -f v4l2 -i /dev/video0 -t 00:00:10 video.webm'`

    If I just run ffmpeg -f v4l2 -i /dev/video0 -t 00:00:10 video.webm from the terminal it works fine.

    Originally the video was supposed to go in Videos/Webcam/temp but I took it out to see if the error had something to do with where I was putting the video. I’m using Ubuntu 18.04.2 LTS if that makes a difference.

  • video hosting with PHP api or PHP script for social network project

    17 avril 2014, par al404IT

    I have a project for a small social network where user can upload their videos, video should not be longer than 1 or 2 minutes but they need to be private and related to user that uploaded.

    Since uploaded video may be in many different format I have two options :

    • upload video and use ffmpeg to process them, can i find any PHP script that does that ? PROS I have my files on my server and I'm not dependent from third party CONS I guess is a real intensive task and I may need a quite good noting plan since the beginning of this project

    • use a video hosting service that provide API to upload and process video, i actually find vzaar.com that may seems to do what I need. PROS Scalable CONS I rely on third party for my contents

    since the project is a small social network it may be interesting this too opusphp.com, but i never user or read about

    can Vimeo PRO suite my needs ? Other suggestions ?
    In future it may be necessary to add a basic video editing function to trim uploaded video setting starting and ending point