
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (13)
-
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (4613)
-
Video playing slow on Rock 3a / Banana Pi 4 and Odroid
21 décembre 2022, par Alain VanderbroeckI want to play 1080p fullscreen video on another device as Raspberry Pi.
Currently i am testing Rock 3A


The video plays very laggy.


Can someone please help me on this one ?


- 

- Which codec should i use ? (currently libx264)
- Which player should i use ? (currently mplayer)
- What are the player settings ? (currently no extra settings)
- Which OS should i use ? (currently tested Ubuntu Mate and Armbian)










Regarding to this link : https://forum.armbian.com/topic/22476-video-playback/
i should patch ffmpeg. But how do i patch it.
Or should i use Kodi ?


-
Replace HTTP links with HTTPS links.
20 juillet 2019, par blueimpReplace HTTP links with HTTPS links.
-
Android ffmpeg release :invalid address or address of corrupt block passed to dlfree
11 janvier 2018, par jcguoguys.I’m new to Android JNI development as well as ffmpeg libs.
With some struggles, I have managed to decode the real time H264 data, but meeting error when release the ffmpeg decoder :
12-11 19:54:36.428 27959-27959/com.example.firmament.dji A/libc﹕ invalid address or address of corrupt block 0x6fa13868 passed to dlfree
12-11 19:54:36.430 27959-27959/com.example.firmament.dji A/libc﹕ Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 27959 (e.firmament.dji)Some questions in stackoverflow mentioned that this error related to wrongly free some memory which was protected(same with Segment Fault).
I checked the C JNI code for times and could not fix the bug, here is my code(release part) :
jint Java_com_example_firmament_dji_XKZH264_release(JNIEnv *env, jobject obj)
{
if (pFrame != NULL) {
av_free(pFrame);
pFrame = NULL;
}
if (pCodecContext != NULL) {
avcodec_close(pCodecContext);
av_free(pCodecContext);
pCodecContext = NULL;
}
if (pParserContext != NULL) {
av_parser_close(pParserContext);
av_free(pParserContext);
pParserContext = NULL;
}
DeleteYUVTab();
return 1;
}
void DeleteYUVTab()
{
if (colortab != NULL) {
av_free(colortab);
colortab = NULL;
}
if (rgb_2_pix != NULL) {
av_free(rgb_2_pix);
colortab = NULL;
}
}