
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (69)
-
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 -
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 (...) -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...)
Sur d’autres sites (6800)
-
ffmpeg convert any user video file to run on mobiles h264 mp4
24 octobre 2014, par tobros91So, i have kind of accepted this task on work but im really not sure if its possible.
We are going to build a website where users can upload videos from their computers and mobile phone browsers. The video files can be a large range of aspect ratios, width, height, codex and file formats.
I will have access to ffmpeg from php exec command on a web server.
Is it possible to use this to convert the user files to one file format that works on computers, android and iphone.
The requirements is that we can set a max width, to witch the video will be scaled, dynamically to match height.
Does anyone know is this can be done, and be done in a reasonable amount of time. Will do project on 2 days. And if so some pointers in the right direction would be nice.
-
.S files causes clang : error : assembler command failed with exit code 1
17 octobre 2014, par MiuI wanted to create a .a file using Xcode from the ffmpeg source files. So i added the sources i wanted inside my Library folder and edited the necessary headers. But when i try to build it, it gives off an error. This happens especially in the first .S file it tries to compile (i checked this part in build phases > Compile sources)
clang : error : assembler command failed with exit code 1 (use -v to see invocation)
Command /Applications/Xcode 3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1I attached an image of the whole error
Can i please ask what went wrong ? I have been working on this for a few days already :( i’m relatively new to Xcode. Any advice would greatly be appreciated. Thanks. -
Incorrect Codec Parameters, Could not write header for output file : FFMPEG - Android
26 septembre 2016, par SalmaanWhy do I get Incorrect Codec Parameters....???
I am creating video using AndroidMediaRecorder
, useFFMPEG
over it to trim it.
I am just trying to trim the video usingFFMPEG
.String[] ffmpegCommand = {
"/data/data/uk.org.humanfocus.hfi/ffmpeg",
"-ss",
"00:00:00",
"-i",
path, // string variable, path of file
"-t",
"00:00:05", // duration of video
"-c",
"copy",
destination + "/trimmmmm.mp4" }; // stringThis is log I get..
It is from starting ofFFMPEG
processing until it ends.10-24 18:02:06.039: V/ss(22093): ***Starting FFMPEG***
10-24 18:02:06.144: V/asd(22093): ***ffmpeg version N-63700-gbf0e5ac Copyright (c) 2000-2014 the FFmpeg developers***
10-24 18:02:06.144: V/asd(22093): *** built on Jun 3 2014 13:27:45 with gcc 4.8 (GCC)***
10-24 18:02:06.144: V/asd(22093): *** configuration: --prefix=/Users/aliasa/Downloads/android-ndk-r9/sources/ffmpeg/android/arm --enable-shared --disable-static --disable-doc --disable-ffplay --disable-ffprobe --disable-ffserver --disable-avdevice --disable-doc --disable-symver --cross-prefix=/Users/aliasa/Downloads/android-ndk-r9/toolchains/arm-linux-androideabi-4.8/prebuilt/darwin-x86_64/bin/arm-linux-androideabi- --target-os=linux --arch=arm --enable-cross-compile --sysroot=/Users/aliasa/Downloads/android-ndk-r9/platforms/android-9/arch-arm/ --extra-cflags='-Os -fpic -marm' --extra-ldflags=***
10-24 18:02:06.149: V/asd(22093): *** libavutil 52. 89.100 / 52. 89.100***
10-24 18:02:06.149: V/asd(22093): *** libavcodec 55. 66.100 / 55. 66.100***
10-24 18:02:06.149: V/asd(22093): *** libavformat 55. 42.100 / 55. 42.100***
10-24 18:02:06.149: V/asd(22093): *** libavfilter 4. 5.100 / 4. 5.100***
10-24 18:02:06.149: V/asd(22093): *** libswscale 2. 6.100 / 2. 6.100***
10-24 18:02:06.149: V/asd(22093): *** libswresample 0. 19.100 / 0. 19.100***
10-24 18:02:06.289: V/asd(22093): ***Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/copymade.mp4':***
10-24 18:02:06.289: V/asd(22093): *** Metadata:***
10-24 18:02:06.289: V/asd(22093): *** major_brand : isom***
10-24 18:02:06.289: V/asd(22093): *** minor_version : 0***
10-24 18:02:06.289: V/asd(22093): *** compatible_brands: isom3gp4***
10-24 18:02:06.289: V/asd(22093): *** creation_time : 2014-10-24 12:25:55***
10-24 18:02:06.294: V/asd(22093): *** Duration: 00:00:11.65, start: 0.000000, bitrate: 3147 kb/s***
10-24 18:02:06.294: V/asd(22093): *** Stream #0:0(eng): Video: h263 (s263 / 0x33363273), yuv420p, 720x480 [SAR 12:11 DAR 18:11], 3276 kb/s, 16.61 fps, 16.67 tbr, 90k tbn, 29.97 tbc (default)***
10-24 18:02:06.294: V/asd(22093): *** Metadata:***
10-24 18:02:06.294: V/asd(22093): *** creation_time : 2014-10-24 12:25:55***
10-24 18:02:06.294: V/asd(22093): *** handler_name : VideoHandle***
10-24 18:02:06.294: V/asd(22093): *** Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 8000 Hz, mono, fltp, 12 kb/s (default)***
10-24 18:02:06.294: V/asd(22093): *** Metadata:***
10-24 18:02:06.294: V/asd(22093): *** creation_time : 2014-10-24 12:25:55***
10-24 18:02:06.294: V/asd(22093): *** handler_name : SoundHandle***
10-24 18:02:06.294: V/asd(22093): ***[mp4 @ 0x50ce0] Could not find tag for codec h263 in stream #0, codec not currently supported in container***
10-24 18:02:06.294: V/asd(22093): ***Output #0, mp4, to '/storage/emulated/0/trimmmmm.mp4':***
10-24 18:02:06.294: V/asd(22093): *** Metadata:***
10-24 18:02:06.294: V/asd(22093): *** major_brand : isom***
10-24 18:02:06.294: V/asd(22093): *** minor_version : 0***
10-24 18:02:06.294: V/asd(22093): *** compatible_brands: isom3gp4***
10-24 18:02:06.294: V/asd(22093): *** encoder : Lavf55.42.100***
10-24 18:02:06.294: V/asd(22093): *** Stream #0:0(eng): Video: h263 (s263 / 0x33363273), yuv420p, 720x480 [SAR 12:11 DAR 18:11], q=2-31, 3276 kb/s, 16.61 fps, 90k tbn, 90k tbc (default)***
10-24 18:02:06.294: V/asd(22093): *** Metadata:***
10-24 18:02:06.294: V/asd(22093): *** creation_time : 2014-10-24 12:25:55***
10-24 18:02:06.294: V/asd(22093): *** handler_name : VideoHandle***
10-24 18:02:06.294: V/asd(22093): *** Stream #0:1(eng): Audio: aac ([64][0][0][0] / 0x0040), 8000 Hz, mono, 12 kb/s (default)***
10-24 18:02:06.294: V/asd(22093): *** Metadata:***
10-24 18:02:06.294: V/asd(22093): *** creation_time : 2014-10-24 12:25:55***
10-24 18:02:06.299: V/asd(22093): *** handler_name : SoundHandle***
10-24 18:02:06.299: V/asd(22093): ***Stream mapping:***
10-24 18:02:06.299: V/asd(22093): *** Stream #0:0 -> #0:0 (copy)***
10-24 18:02:06.299: V/asd(22093): *** Stream #0:1 -> #0:1 (copy)***
10-24 18:02:06.299: V/asd(22093): ***Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument***
10-24 18:02:06.299: V/asdas(22093): ***Ending FFMPEG***I am badly stuck here from 2 3 days, please help me out.