Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (32)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • ffmpeg batch retains old filetype in name

    3 juin 2018, par InsertDisplayNameHere

    I’m using the following ffmpeg script to convert all .mp4 files in the folder to .webm.

    for %%A IN (*.mp4) DO ffmpeg -i "%%A" -c:v libvpx -crf 4 -b:v 3M -c:a libvorbis "%%A.webm"

    I am trying to make it go from "xxx.mp4" to "xxx.webm"

    However when I run the script the file name goes from "xxx.mp4" to "xxx.mp4.webm"

    Any suggestions are highly appreciated.

  • ffmpeg batch retains old filetype in name

    8 février 2015, par InsertDisplayNameHere

    I’m using the following ffmpeg script to convert all .mp4 files in the folder to .webm.

    for %%A IN (*.mp4) DO ffmpeg -i "%%A" -c:v libvpx -crf 4 -b:v 3M -c:a libvorbis "%%A.webm"

    I am trying to make it go from "xxx.mp4" to "xxx.webm"

    However when I run the script the file name goes from "xxx.mp4" to "xxx.mp4.webm"

    Any suggestions are highly appreciated.

  • creating thumbnail from a video using ffmpeg in php exec() returns 1 but returns 0 if command is 'ffmpeg -h'

    23 septembre 2013, par user2807517

    creating thumbnail from a video using ffmpeg in php exec() returns 1 but returns 0 if command is 'ffmpeg -h'. i am using ubuntu. A portion of my code is as shown bellow. When i tried $cmd it returned 1 and when i tried $cmd1 it worked.

    $ffmpeg = 'ffmpeg';
    $getFromSecond = 5;
    $videoFile = $_FILES['file']['tmp_name'];
    $size = '105x73';
    $imageFile = 'Newimage.jpg';

    $cmd = "$ffmpeg -an -ss $getFromSecond -i $videoFile -vframes 1 -s $size $imageFile";
    $cmd1 = "$ffmpeg -h";

    works for $cmd1 but not for $cmd, i am thinking it is permission issues