
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (105)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (12629)
-
Merge commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’
22 juin 2014, par Michael NiedermayerMerge commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’
* commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’ :
dsputil : Split audio operations off into a separate contextConflicts :
configure
libavcodec/takdec.c
libavcodec/x86/Makefile
libavcodec/x86/dsputil.asm
libavcodec/x86/dsputil_init.c
libavcodec/x86/dsputil_mmx.c
libavcodec/x86/dsputil_x86.hMerged-by : Michael Niedermayer <michaelni@gmx.at>
- [DH] configure
- [DH] libavcodec/Makefile
- [DH] libavcodec/ac3enc.c
- [DH] libavcodec/ac3enc.h
- [DH] libavcodec/ac3enc_fixed.c
- [DH] libavcodec/ac3enc_float.c
- [DH] libavcodec/ac3enc_template.c
- [DH] libavcodec/acelp_pitch_delay.c
- [DH] libavcodec/acelp_pitch_delay.h
- [DH] libavcodec/arm/Makefile
- [DH] libavcodec/arm/audiodsp_arm.h
- [DH] libavcodec/arm/audiodsp_init_arm.c
- [DH] libavcodec/arm/audiodsp_init_neon.c
- [DH] libavcodec/arm/audiodsp_neon.S
- [DH] libavcodec/arm/dsputil_init_neon.c
- [DH] libavcodec/arm/dsputil_neon.S
- [DH] libavcodec/audiodsp.c
- [DH] libavcodec/audiodsp.h
- [DH] libavcodec/cook.c
- [DH] libavcodec/dsputil.c
- [DH] libavcodec/dsputil.h
- [DH] libavcodec/g729dec.c
- [DH] libavcodec/g729postfilter.c
- [DH] libavcodec/g729postfilter.h
- [DH] libavcodec/ppc/Makefile
- [DH] libavcodec/ppc/audiodsp.c
- [DH] libavcodec/ppc/dsputil_altivec.h
- [DH] libavcodec/ppc/dsputil_ppc.c
- [DH] libavcodec/ra144.c
- [DH] libavcodec/ra144.h
- [DH] libavcodec/ra144dec.c
- [DH] libavcodec/ra144enc.c
- [DH] libavcodec/takdec.c
- [DH] libavcodec/x86/Makefile
- [DH] libavcodec/x86/audiodsp.asm
- [DH] libavcodec/x86/audiodsp.h
- [DH] libavcodec/x86/audiodsp_init.c
- [DH] libavcodec/x86/dsputil.asm
- [DH] libavcodec/x86/dsputil_init.c
- [DH] libavcodec/x86/dsputil_mmx.c
- [DH] libavcodec/x86/dsputil_x86.h
-
Installing ffmpeg in Ubuntu by using Chef fails by error of yasm version
23 décembre 2014, par ironsandI want to install
ffmpeg
in Ubuntu14.04 by usingchef
.This is my config files for it.
Berksfile
source "https://api.berkshelf.com"
cookbook 'apt'
cookbook 'ffmpeg'nodes/ubuntu.json
{
"run_list": [
"apt",
"ffmpeg"
]
}Then run
knife solo cook ubuntu
. It ends up with a error :STDOUT: Found no assembler
Minimum version is yasm-1.2.0I understand the error. probably if I install
yasm-1.2.0
manually, then the error will be fixed.But I want to install only by using
chef
. What can I do to solve the problem ? -
Flutter video_compress and then ffmpeg trim video to 30s fails with endless logs
7 mars 2021, par Charles BassI am trying to make a simple app in Flutter. A user can either take or pick a video and then upload it. However, I wanted to compress the video for storage purposes on firebase storage, and also trim it to only get the first 30 seconds.


I am facing a very puzzling problem. I am able to compress the video, but with the resultant file, FFmpeg fails to trim it and I get endless logs which result in me having to stop the app and re-run. Alternatively, I am able to trim the video, but with the resultant file, I am unable to compress it getting the error :
Failed to open file '/data/user/0/live.roots.roots/app_flutter/TRIMMED.mp4'. (No such file or directory) PlatformException(error, java.io.IOException: Failed to instantiate extractor., null, java.lang.RuntimeException: java.io.IOException: Failed to instantiate extractor.


This is my code below :




//! function that controls file compression and trimming
static Future<file> compressFile(File file) async {
 print('[COMPRESSING FILE]');

 String mimeStr = lookupMimeType(file.path);
 var fileType = mimeStr.split('/');

 if (fileType.contains("image")) {
 print('[COMPRESSING FILE] - file is image');
 String tempPath = (await getTemporaryDirectory()).path;
 String targetPath = '$tempPath/${DateTime.now().toIso8601String()}.jpg';
 return await compressImageAndGetFile(file, targetPath);
 } else {
 print('[COMPRESSING FILE] - file is video');

 final compressedVideoFile = await compressVideoAndGetFile(file);
 print('[VIDEO FILE COMPRESSED]');
 return await trimVideoGetFile(compressedVideoFile);
 }
 }
 
 
//! function to compress video
static Future<file> compressVideoAndGetFile(File file) async {
 print('[COMPRESSING VIDEO]');

 var result = await VideoCompress.compressVideo(
 file.absolute.path,
 quality: VideoQuality.DefaultQuality,
 deleteOrigin: true,
 );

 print('[COMPRESSED VIDEO TO]: ${result.file.path}');

 return result.file;
 }
 
//! function to trim video
static Future<file> trimVideoGetFile(File file) async {
 print('[TRIMMING VIDEO]');

 Directory appDocumentDir = await getApplicationDocumentsDirectory();
 String rawDocumentPath = appDocumentDir.path;
 String outputPath = rawDocumentPath + "/TRIMMED.mp4";

 final newFile = File(outputPath);

 if (await newFile.exists()) {
 await newFile.delete();
 }

 _flutterFFmpeg
 .execute(
 "-ss 00:00:00 -i ${file.path} -to 00:00:30 -c copy $outputPath")
 .then((rt) async {
 print('[TRIMMED VIDEO RESULT] : $rt');
 if (rt == -1) {
 throw Exception("Something went wrong when trimming the video");
 }
 });

 return File(outputPath);
 }</file></file></file>







Thank you in advance