
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (48)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (5474)
-
Anomalie #2387 : Bug avec l’impression des articles avec commentaires
1er janvier 2012, par marcimat -Oué, c’est l’abréviation. Les navigateurs sont intelligents et mettent entre parenthèse le contenu de l’abbréviation à l’impression. J’ai toujours trouvé très vilain ce abbr avec la date en iso dedans. Tout ça pour je ne sais quel truc de http://fr.wikipedia.org/wiki/Microformat dont on n’entend (...)
-
ffmpeg throws error when trying to remove subtitle track only when artwork is present [on hold]
2 juillet 2014, par user226372Hi ffmpeg users/gurus/developers,
I am having a peculiar problem.
I have a media with 5 tracks (Notice the fifth one is album artwork)
Stream #0:0(und) : Video : h264 (High)
Stream #0:1(und) : Audio : aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 164 kb/s (default)
Stream #0:2(und) : Audio : ac3 (ac-3 / 0x332D6361), 44100 Hz, stereo, fltp, 224 kb/s
Stream #0:3(eng) : Subtitle : mov_text (tx3g / 0x67337874), 1280x60, 0 kb/s (default)
Stream #0:4 : Video : mjpeg, yuvj420p(pc), 1000x1500 [SAR 1:1 DAR 2:3], 90k tbr, 90k tbn, 90k tbcAll i am trying is to remove the subtitle track Stream #0:3(eng) : Subtitle by this command
ffmpeg -i input.mkv -map 0:0 -map 0:1 -map 0:2 -map 0:4 -c copy output.mkv
as explained here
https://trac.ffmpeg.org/wiki/How%20to%20use%20-map%20option
But i am getting this error
Stream mapping:
Stream #0:0 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Stream #0:2 -> #0:2 (copy)
Stream #0:4 -> #0:3 (copy)
[ipod @ 0x103011000] Could not find tag for codec mjpeg in stream #3, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argumentConversion failed !
If the input media doesn’t contain an artwork this error is not happening
Any ffmpeg gurus who can help me with this issue please !!!!
-
How to convert MP4 to MP3 in VLC using Command-Prompt ?
9 juillet 2016, par user6472523I have close to 0 programming experience but would like to figure out how to do this and have been trying to figure out how to do this for awhile. I’m getting very frustrated - wish I could understand it. I’m trying to convert a bunch of MP4 files to MP3 files. I would like to keep the original file and just spit out a bunch of MP3 files with same name as the original file.
From here : https://wiki.videolan.org/How_to_Batch_Encode/
Apparently, all you need to do is use this code in the Command-Prompt. I have never really used the Command-Prompt before so no idea what to do.
FOR /R %%G IN (*.m4a) DO (CALL :SUB_VLC "%%G")
FOR /R %%G IN (*.m4a.mp*) DO (CALL :SUB_RENAME "%%G")
GOTO :eof
:SUB_VLC
SET _firstbit=%1
SET _qt="
CALL SET _newnm=%%_firstbit:%_qt%=%%
SET _commanm=%_newnm:,=_COMMA_%
REM echo %_commanm%
CALL "C:\Program Files\VideoLAN\VLC\vlc" -I dummy -vvv %1 --sout=#transcode{acodec="mpga",ab="512","channels=2",samplerate="44100"}:standard{access="file",mux="mpeg1",dst="%_commanm%.mp3"} vlc://quit
GOTO :eof
:SUB_RENAME
SET _origfnm=%1
SET _endbit=%_origfnm:*.m4a=%
CALL SET _newfilenm=%%_origfnm:.m4a%_endbit%=.mp3%%
SET _newfilenm=%_newfilenm:_COMMA_=,%
COPY %1 %_newfilenm%
DEL %1
GOTO :eof
:eof- So far I changed the directory in the Command-Prompt to the
folder where the MP4 files are located. - In the code, I’ve changed all mention of .m4a to .mp4.
- I’ve change mpga to mp3.
- I’ve changed "C :\Program Files\VideoLAN\VLC\vlc" to where my vlc program
is located.
What else do I need to do ? And what do all the %% mean in the code ?
Thank you so much !
- So far I changed the directory in the Command-Prompt to the