
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (78)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12265)
-
How to remove all metadata but keep audios and subtitles in ffmpeg ?
6 décembre 2020, par hun1030I would like to removes all metadatas using ffmpeg, but keep every single audio and subtitle name. I have a code which works perfectly fine but it remove the audio and subtitle name (original subtitle name "English [eng] (subrip)" after i use the code "subrip").


bat file :


echo off
mkdir outputs
for %%a in ("*.mkv") do ffmpeg -i "%%a" -map_metadata -1 -map 0:a? -map 0:s? -map 0:v -c:v copy -c:a ac3 -c:s copy "outputs\%%~na.mkv"
pause



-
Split Long Video Into Small Parts With FFmpeg And PHP
13 janvier 2021, par Rhara MutiaraFirst, English is not my native language, I hope you understand what i want to say

I want to split long video, lets say 1 hour of video into small parts.
Right now I'm able to do this with this code

ob_start();
 passthru('ffmpeg -i in.mp4 -acodec copy -f segment -segment_time 3 -force_key_frames "expr: gte(t, n_forced * 3)" %d.mp4');
 ob_end_clean();



The output is thousands of parts with name 0.mp4, 1.mp4, 2.mp4 etc and 3sec duration each part

What I want to do now is should look like this :

0.mp4 3seconds , 1.mp4 5seconds, 2.mp4 3seconds.. etc

is it possible ?

-
how to convert and capture with ffmpeg
16 février 2012, par Wai YanI want to upload a video.Uploaded video will be capture two images at 10% and 50% time length.
And if uploaded video is not flv, want to convert to flv.
How to know uploaded video is flv or not flv.
How to convert ?
Now I am using php and ffmpeg.
Please someone answer me.I am beginner for php, ffmpeg and english language.
I founded many questions in this website about ffmpeg.But I can't found need answer.
If this question is duplicate question,forgive me.