Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (62)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6761)

  • ffmpeg and php - generating thumbnail

    25 février 2014, par stinkysGTI

    I've never used ffmpeg before, but it seemed rather straight forward. I already have a script that handles the uploaded file and stores all of the relative data into the database, but I'm not able to generate a thumbnail. I don't get an error either, I even checked the error_log on the server and there was nothing. The command I'm trying to use is :

    shell_exec("/usr/bin/ffmpeg -i files/clipcanvas_14348_offline.mp4 -r 1 -s 1024x576 -f image2 -vframes 1 files/thumb_test.jpg");

    I will change the static file names with variables once I get it working because the videos that will be thumbnailed are uploaded through a form.

    I tried using the solution from this page :

    ffmpeg Getting image or thumbnail from video error

    But I'm not having any luck. Could it somehow be possible it's because it's on a sub domain ?

  • doc/demuxers/mpegts : apply a minor grammar fix to option description

    13 août 2015, par Stefano Sabatini
    doc/demuxers/mpegts : apply a minor grammar fix to option description
    

    Consistently use impersonal form.

    • [DH] doc/demuxers.texi
  • django upload and convert and save

    31 août 2015, par hessam zaheri

    I have a form in django that I upload an avi movie and I want to convert to mp4 and save in media root and save path in database record :

    class Content(models.Model):
       content_title_en = models.CharField(max_length=255)
       content_movie = models.FileField(verbose_name='movie')

       def save(self, *args, **kwargs):
           if self.content_movie:
               os.popen("ffmpeg -i C:/new/Wildlife.wmv video.mp4")
           super(Content, self).save(*args, **kwargs)

    and I convert file but I don’t know how save in file and my database record.