
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
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 (79)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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" (...)
Sur d’autres sites (7434)
-
How to convert byte[] or String to Frame(H264) with javacv ?
9 février 2020, par oleotigerI have received a video from port 11111 with UDP ;
The video frame is split by 1460Byte as its size exceeds the size of UPD packet.while(true){
data=new byte[2048];//创建字节数组,指定接收数据报的大小
packet=new DatagramPacket(data,data.length);
try {
socket.receive(packet);//此方法接收到数据报之前会一直阻塞
} catch (IOException e) {
e.printStackTrace();
}
String info=new String(packet.getData(),0,packet.getLength());
frameStr+=info;
//End of the frame
if(info.length()!=1460){
decode(frameStr);
}
}How to decode the frame with javacv ? The video is decoded by H264.
The raw frame is String or byte[]. -
Extract codec, profile, and level from string [closed]
30 juillet 2024, par Cow BlackI'd like to extract data from codec string
For example, there is a string like "avc1.64001F"
And it produce data like below.


Codec : H264 / profile : High / Level : L3.1


I use C language and use ffmpeg library.
I keep searching how to use ffmpeg library, but I cannot find proper function to solve it.


Is there any proper method or library to solve this problem ?


-
String command for text-watermarking a video using FFmpeg in Android Studio
11 octobre 2017, par djacFollowing is the ffmpeg function which accepts string command, coded in Android Studio. Can you give Sample/Reference string command for text-watermarking a video for this function (in Android Studio) ?
For example :
Input video file absolute path is "inputvideo".
Watermark text is "stackoverflow".
Output video file absolute path is "outputvideo".private void execFFmpegBinary(final String[] command) {
try {
ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
@Override
public void onFailure(String s) {
Log.d(TAG, “FAILED with output : ” + s);
}
@Override
public void onSuccess(String s) {
Log.d(TAG, “SUCCESS with output : ” + s);
//Perform action on success
}
}
@Override
public void onProgress(String s) {
Log.d(TAG, “progress : ” + s);
}
@Override
public void onStart() {
Log.d(TAG, “Started command : ffmpeg ” + command);
}
@Override
public void onFinish() {
Log.d(TAG, “Finished command : ffmpeg ” + command);
}
});
} catch (FFmpegCommandAlreadyRunningException e) {
}
}