Recherche avancée

Médias (91)

Autres articles (88)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

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

Sur d’autres sites (6912)

  • ffmpeg hangs during download on network lags

    30 juin 2016, par VladimirLenin

    ffmpeg hangs infinitely when cutting off wifi while downloading m3u8 (which goes through http actually). Same happens occasionaly when trying to download multiple files from script probably due to network lags. Tried -tiemout option but with no avail.

    ffmpeg -y -i 'http://c.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=5005890079001&videoId=5005830251001' -c copy -f mp4 -bsf:a aac_adtstoasc 'file:/home/serj/.mirror0/OUT_DATA2/www.watoday.com.au/title-page/Sydney v Western Bulldogs: Scoring woes could cost Swans, Dogs a flag/00001-FootyFix - Can the Doggies upset the Swans again.mp4' -timeout 1000000
  • Is there a way using FFmpeg or software that would allow a user to upload a video with audio muted, but download the video with the audio rencoded ?

    10 octobre 2013, par user2868184

    Here is the background :

    I am looking to start a video sharing site that would allow artists to upload their original dance choreography. The problem is that while the choreography is original, the music most likely won't be. I would like the user to be able to upload the video with the sound muted, but once it's downloaded the sound would return. I am looking to host this on a WordPress site but is there a way using FFmpeg or a plug-in that would accomplish this ? I am a very novice programmer but I would like to to be able to suggest a solution to a plugin developer.

    This would also allow me to display and play multiple videos on a page without having all of the audio overlap one another. Thanks in advance for your help !!!

  • Fast FFMPEG Convert to MP3 and Download Using PHP

    17 août 2016, par dickecil

    I using this command below to convert .m4a file into .mp3 file

    system( "ffmpeg -i " . $m4a . " -ar 44100 -ab 128k -ac 2 " . $mp3 );

    But it take up to 30 second until can downloadable using php.

    Any idea to make it faster (like 2-5 second only) ?