
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (69)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (12754)
-
Merge pull request #84 from rojotek/patch-1
23 juillet 2015, par scottschillerMerge pull request #84 from rojotek/patch-1
Update bower.json
-
Revision b336356198 : Revert "Revert 3 patches from Hangyu to get Chrome to build :" This patch revert
24 juin 2014, par hkuangChanged Paths :
Modify /test/user_priv_test.cc
Modify /vp9/decoder/vp9_decoder.c
Modify /vp9/decoder/vp9_dthread.h
Modify /vp9/vp9_dx_iface.c
Revert "Revert 3 patches from Hangyu to get Chrome to build :"This patch reverts the previous revert from Jim and also add a
variable user_priv in the FrameWorker to save the user_priv
passed from the application. In the decoder_get_frame function,
the user_priv will be binded with the img. This change is needed
or it will fail the unit test added here :
https://gerrit.chromium.org/gerrit/#/c/70610/This reverts commit 9be46e4565f553460a1bbbf58d9f99067d3242ce.
Change-Id : I376d9a12ee196faffdf3c792b59e6137c56132c1
-
add part of audio to video file with ffmpeg
29 juillet 2015, par Kosty RudenkoI am trying to add part of mp3 from 3rd second to 7th to the 10th second of my video mp4 file.
And I expect to that{ffmpeg -y -i /storage/emulated/0/MyFolder/Other_10368544.mp3
-i /storage/emulated/0/Movies/MyFolder/VID_20150519_154924.mp4
-strict experimental
-filter_complex
[0:a]atrim=3:7,atempo=1.0,setpts=PTS-STARTPTS[a0];
[0:v]crop=720:720,scale=720:720[v1];
[a0][v1][0:a] concat=n=1:v=1:a=2 [v] [a]
-map [v]
-map [a]
-preset ultrafast
-vcodec mpeg4
/storage/emulated/0/MyFolder/VID_20150729_160628247.mp4but this task doesn’t work for me.