
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (57)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (5193)
-
Batch File Removing File Extension
29 décembre 2013, par scsa20So I've made a batch file to help me extract the video only from an MKV file using MKVToolNix and then re-encode the h264 file to an MP4 for video editing using mp4box. It works really well, this is how it looks :
for %%a in (*.mkv) do "C:\Program Files (x86)\MKVToolNix\mkvextract.exe" --ui-language en tracks "%%a" 0:"%Sources%\h264\%%a.h264"
for %%a in (*.h264) do mp4box.exe -add "%%a:fps=23.976" "%Sources%\%%a.mp4"
Problem is, the first line would extract the file with
.mkv.h264 then when I go to encode the file with mp4box to a MP4 file it comes out as .mkv.h264.mp4. Is there a way to code it so it'll drop the first 2 extensions and leave only with the .MP4 ? Searched around and can't find my answer for something that is after the fact (all the ones I've found is for removing the last extension which doesn't help me).
Thank you for any help.
-
Video file with 2 audio streams, increase audio of first audio stream only [FFMPEG]
15 novembre 2013, par BlasterGodBeen fighting with this issue for quite some time, and I can't do anything to make it work.
What I am doing is generating a video from images and adding 2 audio tracks to the video usign FFMPEG.Here is the command I use so far :
ffmpeg -i AUDIO1 -i AUDIO2 -fflags +genpts -r 1/5 -f image2 -i "c:\%%4d.jpg" -qscale:v 0K -vcodec mjpeg -s 480x320 -y -r 30 -filter_complex amix=inputs=2,volume=1 "C:\asdasdasdasd3.avi"
I am using :
-filter_complex amix=inputs=2,volume=1
to mix the 2 audio tracks and add them to the video. Before adding the audios to the video, I want to increase the volume of the first audio track (and leave the second audio file with the same volume).How can this be done ?
Thank you !
Vlad -
Is there a way to strip B frames from a .mp4 with ffmpeg script
14 décembre 2020, par QWKSILVERI have a series of videos that run in a very stuttery way on my hardware. In avidemux I get an error about B frames not being linearly correct, do I wish to open, may take a long time. I open it, and then resave it, without re-encoding anything, but it fixes the issue in the new file, and the stutteryness goes away in playback.


I would like to do this with ffmpeg so i can just run a script on the files that have the issue, and not have to go one at a time.


So the question is, Can I strip the b-frame data, or fix it, remove any duplicate frames, leave the time/date data alone, and resave it in the same format (.mp4) without file size growing, or quality degrading, option would be to actually reencode to x265 but not required.


i would also entertain a move to another format mkv, webm, if I could keep the rest stable, and have smaller or equal files. Videos will exist in multiple resolutions, but usually typical 16:9 dimension.


Any help would be appreciated.