
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (29)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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 (...)
Sur d’autres sites (6600)
-
where to save mpd file in raspberry pi so dash.js can access it remotely ?
11 mai 2016, par DjmThis is very high level question. I want to stream a live video from raspberry pi. I want to be able to watch live video in the browser remotely being streamed by the Raspberry pi.I want to use DASH stream protocol, and Dash.js as client to HTML5. I have looked through different tutorials but i am still puzzled about how this works.I understand that (assuming you have already prepared your videos with FFMPEG tool) from the client Dash.js
you have to make a call/request and pass a url to your mpd file. My question is where would you save the file in raspberry pi especially if the Dash client is in a different web app(i want to make the call remotely) ? -
Android - Adding Effects to Videos like Instagram
10 mai 2016, par SanI am in need of a idea to apply filters to video like Instagram, video trimming and fetching images from the video. I have researched a lot and all I can come up with is the following ways to achieve what I want :
FFMPEG :
As far as FFMPEG is considered, majority of the average level droid devs feel that its a pain cause it involves NDK and compiling the FFMPEG commands.The above mentioned link is self-explanatory and it saves me the pain of setting up the NDK but the biggest drawback in this is that its not stable and its REALLY slow.
My query on this topic is that how do I compile FFMPEG into my project. I have gone through several links to integrate FFMPEG as follows :The third link seemed to make sense but ultimately I couldn’t understand completely and go where,do what after following those steps.
Question 1 :
Is there is a solid Android - FFMPEG Integration Document that can help a beginner like me ?
Open CV
Question 2 :
I haven’t tried Open CV yet but will it be worth it ?
Camera2 API
Question 3 :
As far as I researched, I can see that the Camera2 API can help us shoot videos and images with effects added to it but will it be useful for me to process the already existing videos and images ? I don’t have the requirement to add effects to the camera while its captured, its aftermath is where I want to add my effects.
If someone is kind enough to accept my stupidity and help me out, I am thankful to them.
Will going ahead with FFMPEG be good or OpenCV or Camera2 API will be better ?
-
Live TV Stream to Android
8 mai 2016, par Hd DreamI am new user on stackoverflow.
I wrote you today to get answer and solution to my problem.
I have input stream come from vlc. I need that all android connected to my network can watch stream in live in the same time like an online channel tv.
I saw for this channelCode : Select all
www.canal2international.net/live.phpthere is a same ts file is generated for each 45 second.
I need to do the same but with a mp4 file that I insered on html5 video tag.
for that I tried to convert my input stream with this cmd on ffmpegCode : Select all
ffmpeg -i 192.168.1.10:8620 -c:v libx264 -profile:v baseline -c:a aac -ar 44100 -ac 2 -b:a 128k -f segment -segment_time 45 -segment_format_options movflags=+faststart -segment_list D :\live\play.m3u8 -segment_list_size 2 D :\live\watch%03d.mp4I’m not satisfied. I can’t insert m3u8 file in html5 video tag because android don’t read it and his content.
I tried another code that I can say little similar that the result of this page
Code : Select all
www.canal2international.net/live.phpCode : Select all
ffmpeg -i 192.168.1.10:8620 -hls_flags single_file D :\live\play.m3u8It generated two files, a ts and a m3u8.
I know that html5 video tag can read ts file. Maybe there is a solution somewhere.The second way I don’t like in this code is ts file don’t read in real time. When I read file it begin from the first encoding.
All android connected to my network must watch in real time !
I don’t know how to solve my problem that’s why I write in thie forum.
Thank you in advance for all your help !