
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (84)
-
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" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (7684)
-
Using FFMPEG with Android NDK v6
12 septembre 2012, par user916350I try to compile ffmpeg library for my Android app, but all instructions from Internet use android ndk v4, and it doesn't work with android ndk v6 ; I can't find ndk v4. Give me please a good instruction with v6 or share me v4 please, i need it.
-
Windows : can't generate libx264.dll because MinGW : not c compiler found
21 avril 2015, par Sandie CIt’s my first post in a forum ever (and in english...) Any suggestion is welcomed.
So let’s started !
My global goal is to recorder/transcoding and dispay an IP Camera stream from a .bat whitch calling vlc. (I tried before doing it with VLC interface and it’s going well. I don’t understand why the encoder is missing using that way)
I want an asf container containing h264 and aac.
.bat :
cd C :\Program Files (x86)\VideoLAN\VLC
vlc rtsp ://root:root@ip_adresse/media.amp —sout "#transcode vcodec=x264, vb=112 , acodec==aac, fps=25:duplicatedst=display,dst=standardaccess=file,mux = asf,dst=flux.asf" -v
when I first execute this, VLC told me that H264 encoder was not found, so I decided to compile x264.
I used this link
http://www.ayobamiadewole.com/Blog/How-to-build-x264-or-libx264.dll-in-Windows
I succeed to make the .exe but and when I got to
./configure —disable-cli —enable-shared —extra-ldflags=-Wl,—output-def=libx264.def
minGW shell indicates : not working c compiler found
I tried to find some answer, but i didn’t found a good one.
Does anyone have an idea of what i’m doing wrong ?
Is it possible that my gcc (4.6) is not the good one ? What should I do ?
Need another advice :
When I would have this libx264.ddl where should I put it to make my script working ?Early thanks for your answers.
-
adding audio files to exist video with ffmpeg make the video currapted
21 janvier 2018, par YanshofI have video file (.avi) and audio files (.wav) that i want to marge to ine avi file.
The wav files are marge with some delay ( work fine )
But in some cases the audio files are longer then the video stream and i getting currapted video file that contain only the audio - and i can’t see the video.
When i try to separate the audio and the video from the currapted video output i got the good video file and good audio file that i can use ( see the video and listen to the audio )
I don’t know if its possible to keep the audio and video in case the audio is longer on the delay that the video file.
Beside this, When i adding the audio files ... the video is less time .. i mean that if the video without the audio is 14 minus => after the audio is 13 minus
( when its not currapted )Here how i marge the files ( audio and the video )
ffmpeg.exe -report -i "..\\merged.avi" -i "Storage\\1.wav" -i
"Storage\\2.wav" -i "Storage\\3.wav" -filter_complex "adelay=30000|30000"
"adelay=91000|91000" "adelay=151000|151000" -c:v copy "Storage\\ALL.AVI"