
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (19)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 : (...)
Sur d’autres sites (5511)
-
Youtube-dl and Shell speed
7 août 2016, par JJ The SecondSo I’ve been experimenting with youtube-dl on Ubuntu 14 recently and I should say downloading is well fast even I have a 1GB Ubuntu LAMP but when it comes to triggering FFMPEG and deleting process hangs for a good time. Even worked with -k but as soon as FFMPEG process is completed, it takes time to respond. I do understand this is a big subject but I’d really like to hear your thoughts, what amazes me is how a website like thisis running in less than a second ? Here is what I have,
[youtube] UxxajLWwzqY: Downloading webpage
[youtube] UxxajLWwzqY: Downloading video info webpage
[youtube] UxxajLWwzqY: Extracting video information
[info] Writing video description metadata as JSON to: /var/www/html/download/Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO].info.json
[download] Destination: /var/www/html/download/Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO].m4a
[download] 100% of 2.73MiB in 00:00
[ffmpeg] Correcting container in "/var/www/html/download/title.m4a"
[ffmpeg] Destination: /var/www/html/download/title.mp3
Deleting original file /var/www/html/download/title.m4a (pass -k to keep)youtube-dl "http://www.youtube.com/watch?v=UxxajLWwzqY" --write-info-json --extract-audio --audio-format mp3 -o "/var/www/html/download/%(title)s.%(ext)s"
I really don’t understand how this is done so fast ? Is there anything I’m missing ?
Thanks for your time.
-
FFmpeg - concat video and image
15 juin 2020, par AleVastaI am trying to concat a jpeg with a mp4, but when I concat both with this commands, the result is a video with the audio starting from the time 00:00:00, I want it to start along with the video in 0:0:10. So basically the idea of imageUrl is to have a sort of cover or presentation.



-loop 1 -t 10 -i ${imageUrl} -i ${videoUrl} -filter_complex "[0:v:0][1:v:0]concat=n=2:v=1:a=0" -r 60 -vn -y -c:a copy -s 640x352 ${outputUrl}




Any idea how I can fix it ? thanks !


-
use ffmpeg in vba to change video format
3 juillet 2020, par Iban ArriolaI want to change the video format of the embedded videos that appears in a presentation. I achieve to export the video file to another folder using the following code :



Dim Finame As Variant
 Dim oApp As Object
 Dim StoreFolder As Variant
 Dim Videoname As Variant
 Dim FileNameFolder As Variant

 MkDir "C:\template\videoZip"

 Set oApp = CreateObject("Shell.Application")
 FileNameFolder = "C:\template\videoZip\"
 Finame = ActivePresentation.Path & "\" & ActivePresentation.Name
 StoreFolder = "C:\template\created_files\"
 oApp.Namespace("C:\template\videoZip\").CopyHere Finame
 Name "C:\template\videoZip\" & ActivePresentation.Name As "C:\template\videoZip\" & ActivePresentation.Name & ".zip"


 oApp.Namespace(FileNameFolder).CopyHere oApp.Namespace("C:\template\videoZip\" & ActivePresentation.Name & ".zip").items

 Dim firstCount As Integer
 Dim lastCount As Integer

 For j = 1 To videoNum
 firstCount = oApp.Namespace(StoreFolder).items.count
 Videoname = "C:\template\videoZip\ppt\media\media" & j & ".mp4"
 oApp.Namespace(StoreFolder).CopyHere Videoname
 lastCount = oApp.Namespace(StoreFolder).items.count
 If firstCount = lastCount Then
 MsgBox "The video has problems loading and it will not be shown (Only mp4 supported)"
 End If
 Next j

 Set objFSO = CreateObject("Scripting.FileSystemObject")
 objFSO.deletefolder "C:\template\videoZip"
 End If




As I said, with this peace of code I can get all the videos that are in the presentation. Now I want to change the format of them. I heard that it is possible using ffmpeg. Other solutions to change format are welcome too.