Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (29)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6370)

  • conversion from mp3 to ogg using php

    9 janvier 2014, par Preethy

    I want to convert mp3 file to ogg. I tried the following code

    exec("/usr/local/bin/ffmpeg -i 1.mp4 -vcodec libtheora -acodec libvorbis testjohn4545454.ogg",$output);
    var_dump($output);

    But it does not convert the file and it only returns array(0) { }
    and it only takes a little execution time.

    But the conversion is success when using ssh command.

    Please give me solution.

  • Extract WAV audio file from video after uploading on web, using FFMPEG in django

    26 mars 2019, par maryam mehboob

    Problem

    I am trying to find a way to extract an audio wav file from a mp4 video file that is uploaded by a web user using ffmpeg using Django.

    If I will find to extract audio, then where should I save it in my project ?

    1. I tried it with "Django-ffmpeg", but didn’t convert and was stuck in ’pending conversion’ message.
    2. Then I tried with :

      import subprocess

      subprocess.call('ffmpeg -i filename.mp4 filename.wav')

    Error

    Error

    Script

    def validate_file_extension(value) :
    import os
    from django.core.exceptions import ValidationError
    ext = os.path.splitext(value.name)1 # [0] returns path+filename
    filename = os.path.splitext(value.name)1 # [0] returns path+filename
    valid_extensions = [’.mp4’]
    if not ext.lower() in valid_extensions :
    raise ValidationError(u’Unsupported file extension.’)
    else :
    import subprocess
    subprocess.call(’ffmpeg -i filename.mp4 filename.wav’)

  • how to modify movie filter in ffmpeg using zmq

    14 juin 2016, par ramon1604

    So far, we can modify overlay, scale and others but we do not find the proper syntax to modify movie filter in ffmpeg. We are using perl to send zmq command to ffmpeg and it returns 0 success when command is properly received. Please help. thanks