
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (12423)
-
How to extract video with single audio channel from a ts video contain multiple audio channels in one aac audio stream ?
11 avril 2014, par StackOverFlowMeteorI have a video file named "Video.ts" that contain 4 audio languages (English, Chinese, xxx, xxx).
I want to output a video file, say "Video1.ts" (or even converted to "Video1.MP4" directly..) that contain the original video with English audio in mono ONLY.The ffmpeg shown the original aac audio channels were in the one stream "0:1"
Can anyone show me the ffmpeg command line to do it ? Thanks a lot !C:\ffmpeg_test>ffmpeg.exe -i Video.ts
Input #0, mpegts, from 'Video.ts':
Duration: 00:01:11.55, start: 1.000000, bitrate: 1866 kb/s
Program 1
Stream #0:0[0x281]: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p(tv,
bt470bg), 640x360 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:1[0x201]: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, 4.0, fltp
, 120 kb/s -
How to convert an mkv (with subtitles) to something Nexus One friendly ?
21 décembre 2011, par Daniel QuinnI have this ffmpeg one-liner that's been good for generating video files for my Nexus One :
ffmpeg -i infile.mkv -acodec aac -s 572x238 -vcodec libx264 -vpre ipod640 -ab 128k -b 512k -f mp4 -strict experimental outfile.mp4
But it does this ignorant of the subtitles in
infile.mkv
— usually not a problem, unless I'm dealing with a non-english movie. In cases like this, I'd like to use the Japanese audio track, and the English subtitles.The funny bit is that I can use
mplayer
to play it using-alang
and-slang
, but don't know how to usemencoder
to make Nexus One friendly videos. I can useffmpeg
to generate Nexus One friendly videos, but can't figure out how to get it to use a specific subtitle track.If someone can solve one of these for me, I'll be a happy camper.
-
Ffmpeg Dll for php 5.6 ( x32 or x64)
28 août 2016, par Emre KarataşoğluI developed a project like a web tv . Users can upload videos and I get video info from php_ffmpeg.dll with ffmpeg_movie method. I was using php 5.5.12 and I’ve x32 and x64 php_ffmpeg.dll. Nowadays I want to upgrade my php version to 5.6 and changing wamp (apache , mysql ) to wpn-xm ( nginx , mariadb ).
I can find DLL for 5.2 5.3 5.4 5.5 , unfortunately 5.6 can not be found.
Please let me know that how can I build or find php ffmpeg dll for php 5.6 . I know how to use ffmpeg -i or ffprobe for getting video details but as I wrote there before , this is an existing web project . Therefore I could not change the basis .