
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 (8)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (3859)
-
Downloading video & audio segment simultaneously with youtube-dl and ffmpeg
7 décembre 2020, par MtalyFor an online streaming video that I would like to download I have two m3u8 files.


One for the video itself with segment-0.ts to segment-250.ts :


#EXTINF:6.000000,
segment-0.ts
#EXTINF:6.000000,
segment-1.ts
#EXTINF:6.000000,
segment-2.ts
#EXTINF:6.000000,
segment-3.ts
#EXTINF:6.000000,
segment-4.ts



and another m3u8 for the audio segments :


#EXTINF:6.016000,
segment-0.aac
#EXTINF:6.016000,
segment-1.aac
#EXTINF:6.016000,
segment-2.aac
#EXTINF:6.016000,
segment-3.aac
#EXTINF:6.016000,



So, I use youtube-dl and ffmpeg to download the both m3u8 separately then merge them to get the final mp4 (audio+video).


Is there a way to merge the files or use a combined command in the Terminal to automatically download both and merge them ?


-
FFmpeg concat in android
13 avril 2018, par fvnI have trying to concat multiple videos (mp4 or mov)on Android Studio using FFMPEG. I have managed to get vidoes in an arrayList and their path like this :
private List<string> getSelectedVideos(Intent data) {
List<string> result = new ArrayList<>();
ClipData clipData = data.getClipData();
if(clipData != null) {
for(int i=0;icode></string></string>I have looked online on how to concat vidoes using FFMPEG https://trac.ffmpeg.org/wiki/Concatenate
However I’m not sure how to do it using Android studio. Any help would be much appreciated.
-
FFMPEG video overlay with remote overlay source
19 mai 2012, par DasasI'm trying to achive an overlay with ffmpeg wich take the overlay source from a "remote" video encoder.
Just for the sake of testing i'm using random online video source.
As you will notice in the code below the source and the overlay are the same. That's not the problem.
The command i'm using at the moment is the following :
ffmpeg -f mjpeg -i http://81.20.148.158/anony/mjpg.cgi -vf "movie=http://81.20.148.158/anony/mjpg.cgi [mv]; [in][mv] overlay=0:0" output.avi
Here an easy-to-read version :
ffmpeg
-f mjpeg
-i http://81.20.148.158/anony/mjpg.cgi
-vf "movie=http://81.20.148.158/anony/mjpg.cgi [mv]; [in][mv] overlay=0:0"
output.aviI'm getting this error :
Missing key or no key/value separator found after key '//81.20.148.158/anony/mjpg.cgi'
It works pretty well if i use a "local" video source such as
ffmpeg
-f mjpeg
-i http://81.20.148.158/anony/mjpg.cgi
-vf "movie=a.flv [mv]; [in][mv] overlay=0:0"
output.aviI have the feeling something is wrong with the double slashes // or more likely with the : in http://...
Thanks,
Francesco.