
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (43)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (7234)
-
How do I run the qt ffmpeg wrapper example ? (error : cannot find -lavutil)
29 août 2013, par JamesI am using QT 4.8 on the raspberry pi trying to save a binary stream to a video file like mp4. I was able to create and save static images by converting it into a QImage, but QT does not seem to support actually saving that stream (or the series of QImages) to a video file.
The only option I may have found is qt ffmpeg Wrapper
https://code.google.com/p/qtffmpegwrapper/but the example won't run out of the box. I am having the same exact problem as this guy :
All I did was download it and try to run the included example, but no go.
Am I supposed to download ffmpeg files prior to using this ? apt-get install ffmpeg ?Thanks !
-
How to use guardianproject's ffmpeg library for android
24 juillet 2014, par Abdul QadirHere’s the link to the ffmpeg android library I’m trying to use :
https://github.com/guardianproject/android-ffmpegI’m trying to follow what is written in this post in order to use it :
http://stackoverflow.com/a/21553337/1462190- Included the ffmpeg library project into the eclipse. (File > Import)
- Added the ffmpeg library to my application. (Right clicked my project’s name > Properties > Android > Library)
However I can’t get it to work. I get the following errors :
In console :
android-ffmpeg-library] Could not find android-ffmpeg-library.apk!
In DDMS :
07-24 17:00:24.990: E/AndroidRuntime(23935): java.lang.NoClassDefFoundError: org.ffmpeg.android.FfmpegController
I have no clue to what could be the problem. Although i’m noticing one thing which I think I should mention here. After the second step, when I add the library, I see the green check indicating everything is fine. But after I run my application (which crashes before it launches) I see a red cross which of course indicates something’s wrong.
Before I run my application :
After I run my application :
Any help would be appreciated ! thank you !
-
rtmppkt : Repeat the full 32 bit timestamp for chunking continuation packets
14 janvier 2015, par Martin Storsjörtmppkt : Repeat the full 32 bit timestamp for chunking continuation packets
This fixes sending chunked packets (packets larger than the output
chunk size, which often can be e.g. 4096 bytes) with a timestamp delta
(or absolute timstamp, if it’s a timestamp step backwards, or the
first packet of the stream) larger than 0xffffffff.The RTMP spec explicitly says (in section 5.3.1.3.) that packets of
type 3 (continuation packets) should include this field, if the
previous non-continuation packet had it included.The receiving code handles these packets correctly.
Pointed out by Cheolho Park.
CC : libav-stable@libav.org
Signed-off-by : Martin Storsjö <martin@martin.st>