
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (77)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...)
Sur d’autres sites (13860)
-
avformat/hlsenc : add hls_flag option to write segments to temporary file until complete
7 février 2017, par Aman Guptaavformat/hlsenc : add hls_flag option to write segments to temporary file until complete
Adds a `-hls_flags +temp_file` which will write segment data to
filename.tmp, and then rename to filename when the segment is complete.This patch is similar in spirit to one used in Plex’s ffmpeg fork, and
allows a transcoding webserver to ensure incomplete segment files are
never served up accidentally.Reviewed-by : Hendrik Leppkes <h.leppkes@gmail.com>
Reviewed-by : Bodecs Bela <bodecsb@vivanet.hu>
Signed-off-by : Aman Gupta <aman@tmm1.net>
Signed-off-by : Steven Liu <lq@chinaffmpeg.org> -
FTP Check complete file
25 septembre 2015, par jdoeOkey I know there are a bunch of other questions like this and I have read them but I just cant get this to work. Here is my scenario : Ppl upload video files to the ftp. Every 10 second I have a cron job that run ffmpeg commands on video files in the ftp folder.
But the ffmpeg commands will fail because the whole file has not yet been uploaded. So I need one way to as exact as possible check if the file has been completely uploaded. -
How to use FFmpegMediaMetadataRetriever in Android Studio ?
20 juin 2016, par ShaileshI have used FFmpegMediaMetadataRetriever in "Eclipse" with fmmr.jar file it’s working fine but right now I have migrated my project in "Android Studio". I used following dependencies in my build.gradle file.
dependencies {
compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.5'}
but I found the following error
03-30 16:07:10.030: E/AndroidRuntime(7763): java.lang.UnsatisfiedLinkError: dlopen failed: could not load library "libavutil.so.54" needed by "libswscale.so"; caused by library "libavutil.so.54" not found
03-30 16:07:10.030: E/AndroidRuntime(7763): at java.lang.Runtime.loadLibrary(Runtime.java:365)
03-30 16:07:10.030: E/AndroidRuntime(7763): at java.lang.System.loadLibrary(System.java:526)
03-30 16:07:10.030: E/AndroidRuntime(7763): at wseemann.media.FFmpegMediaMetadataRetriever.<clinit>(FFmpegMediaMetadataRetriever.java:124)
</clinit>please suggest me how to resolved this error.