
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (38)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (3697)
-
avcodec/fmvc : Move frame allocation to a later stage
10 juin 2022, par Michael Niedermayer -
How to encoding h.264 in node.js without ffmpeg
21 juillet 2019, par j0nl1I’m doing a project which consists in controlling a drone (Tello) with a mobile phone. I choosed react native as hybrid app to develop this project, I had to insert a node.js inside the application (Node.js for Mobile Apps React Native) because the drone has only udp communication and also need a package to decode the stream video.
the drone has three udp ports, one of them is to receive instructions, another one is to send the drone status and the last one for sending the video.
This video I get from the stream it is in raw so I need a package to encode it or transform it.
I was testing things because there isn’t documentation about this topic.
I downloaded ffmpeg and after that I tried to decode the data in H.264 and finally I could see the video.After this introduction I would like to ask you :
Is there any way I can use the same technique on the mobile without needing ffmpeg ?
Is there any way to import ffmpeg into android and communicate with nodejs ?
-
Converting files from a C++ base [closed]
31 mars 2014, par Trevader24135I'm looking for a way to use ffmpeg from a program in C++ to allow super easy and accurate converting by typing only a couple of things in. I have everything all working, except the most important part. The actual converter. Here's my code so far - how do I use ffmpeg in C++ ?
#include <iostream>
#include <mp>
using namespace std;
int main()
{
std::string formatIn;
std::string FormatOut;
std::string confirm;
cout << "select format that file is currently in: mp3, gp3, mp4, flv" << endl;
cin >> formatIn;
cout << "original format = " << formatIn << endl;
cout << "choose your target format: mp3, gp3, mp4, flv" << endl;
cin >> FormatOut;
cout << "selected format = " << FormatOut << endl;
cout << "proceed? ";
cin >> confirm;
if(confirm == "yes") {
cout << "proceeding with operation:" << endl;
func convert();
}
else {
if(confirm == "no") {
cout << "canceling,,," << endl;
}
}
}
int convert()
{
}
</mp></iostream>