
Recherche avancée
Autres articles (54)
-
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 (...) -
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (8051)
-
FFMPEG on Android with libmp3lame
2 septembre 2014, par M4thoI’ build an app for android to convert videos to audio.
Im using ffmpeg for the process. (Im using the precompiled version from here)At the moment its only possible to convert to *.wav and not to *.mp3.
So im asking u if anybody can provide me a compiled version supporting the libmp3lame-library ?
Or can anybody explane to me how to compile it myself.
Ive tried to, but im getting some errors all the time and i dont know how to handle them.Ive tried to compile it myself with this setup :
- Ubuntu x64
- Android NDK-r10
- ffmpeg SourceCode from Feb-02-2014
- libmp3lame-dev
following this tutorial
of course ive added
—enable-libmp3lame to the ./configurationthanks anyways
and sorry for the bad english -
How to compare/show the difference between 2 videos in ffmpeg ?
25 janvier 2016, par polarkaI am a newbie at encoding. I have read and tried x264 in lossless mode (-qp 0), however I’d like to make sure that in my new video, every single pixel contains the same information as the source file (which is in YUV 420 so the loss of color conversion is avoidable, as far as I know). I want to be able to check that, because I don’t believe in that if someone just says its lossless.
I welcome answers suggesting other codecs for lossless encoding, my only requirements for codecs are having one of the best compression rate and let me to pick different calculation times (such as the range from placebo to veryfast in x264) in order to adjust the compression level and calc time to my needs. But keep in mind that the original question is about how can I calculate the differences frame by frame of two videos and export it to a 3rd file, so I can watch it myself. I think that knowledge (if its possible and doesnt have serious limitations) will be useful for me in the future too.
-
ffmpeg rtsp over http not working
17 novembre 2017, par kooliI put this conf on ffserver
HTTPPort 1234
RTSPPort 1235
<stream>
Format rtp
Feed feed1.ffm
VideoCodec libx264
VideoFrameRate 24
VideoBitRate 100
VideoSize 480x272
AVOptionVideo flags +global_header
</stream>I stream with this command
ffmpeg -i file.h264 http://127.0.0.1:1234/feed1.ffm
When I watch this stream I can watch via udp and tcp on this url :
rtsp://127.0.0.1:1235/live.h264
but i want to stream with rtsp over http(http tunneling).
How can I do it please ??