
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (33)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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 : (...) -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (5225)
-
Convert .MOV video format to .mp4 format
15 décembre 2015, par Nimesh ChandramaniyaI am developing an Android app, for which I need to convert videos with .MOV file extension (captured on iOS device) to .mp4 file extension. I tried changing the extension of the file via code (i.e. from MOV to mp4) but this approach didn’t work.
During my research I came across FFMPEG framework to work with different video file formats and I have the following questions :
- Is it possible to convert video file format using FFMPEG framework ? If yes, are there any online tutorials available on how to use this framework in Android ?
- Are there any Android API using which I can use to retrieve raw data (uncompressed) of any video file ? (If I can retrieve raw data, it’s easier to convert it to a desired file format)
I’d appreciate any suggestions on this issue. Thank you in advance.
-
How can i merge wav audio and m2v format video together
10 septembre 2019, par A PersonI have a video file that is produced after editing that output in .m2v format. This video does not have sound. After editing i also get the audio source file, either just 1 or sometimes 2 (Left and right audio). I want to be able to transwrap or merge these together. I have a .mvx file that also gtes outputted with these.
I want to be able to merge the audio and video file and have no lip sync issues as well as make sure that the time stamp is accurate. Is there a way to do this with ffmpeg or ffastrans.
ffmpeg -i video.mp4 \
-i left.mp3 \
-i right.mp3 \
-filter_complex '[1][2] amerge' \
-c:v copy \
output.mp4I’ve tried the above code as which i found from my research but i get this error :
I have also tried :
No such filter : ’[1][2]’
Error initializing complex filters.
Invalid argumentffmpeg -i file1.mp3 -i file2.mp3 mix.mp4 -map 0:0 -map 1:0 -newaudio
The output should give me a source video file preferably in .mxf file format.
-
Streaming over RTSP using nodejs
14 novembre 2016, par beNerdI am trying to stream a (.mp4) file through my nodejs server using RTSP. I searched a lot and got stumbled upon this :
which really looks promising.
I tried streaming the video over rtsp and testing in VLC media player as provided in the docs like : rtps ://localhost:8080/video.mp4 and the vlc is unable to play any video. The doc for the above says that you can access streamed video using file path directly which clearly doesn’t work over RTSP.
I did some more research and found that RTSP requires a SDP to be constructed first. What is the best way to construct a proper SDP and then RTSP it on a specific port using a path.
(e.g rstp://112.332.3.1:8493/someFilePath)
Excuse the terminology if it looks a bit weird, I am new to all this. I am working in a nodejs ecosystem on the server side which can easily implement a ffmpeg and my client is going to be a simple html5 app over cordova.