Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (24)

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

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

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

Sur d’autres sites (5172)

  • Instagram API video publishing [closed]

    22 mai 2023, par Bergutov Ruslan

    I'm trying to publish video to instagram and it always gives me error

    


    error code 2207026, message "The video file you selected is in a format that we don't support." and there is also note about aspect_ratio

    


    But the point is that previously i downloaded this video from instagram and it has compatible aspect ratio following specs

    


    video that i'm trying to upload

    


    I've tried couple configs for ffmpeg to prepare video but in my case it didn't get job done

    


  • Do not redefine percentage variable

    14 avril 2014, par ccampbell
    Do not redefine percentage variable
  • catch percentage File conversion ffmpeg

    28 mai 2013, par offboard

    I've been thinking about implementing a new function on my system.
    so I thought to show the state of the file conversion.
    I thought of a logic to it.
    updating table from the database according to the percentage of file conversion.

    <?
    exec('ffmpeg -i p17prdvj251lk11d3v12ntijfq2u1.mp4 -vf scale=-1:360 -c:v libx264 -preset ultrafast output.flv');
    for($i = 0; $i <= 1; $i++){
       mysql_query("UPDATE progress SET pss='".$i."' WHERE id='1'");
    }

    the problem is that I do not know if it's possible to get the percentage.
    I thought about using the extension of ffmpeg and create a function to convert the files but do not know if it will work