
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (62)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6690)
-
Trim Audio Flutter ( ffmpeg_kit_flutter Package) Not Working
23 septembre 2024, par Sharath AppeshAudio Trim is not working


Flutter Version : 3.0.2
Dart : 2.17.3


Package used :
ffmpeg_kit_flutter : ^4.5.1


Input file path :
"/data/user/0/com.goonetech.v1.gofinal/cache/file_picker/sample-15s.mp3"


Output file path :
"/data/user/0/com.goonetech.v1.gofinal/app_flutter/output.mp3"



double start=2, 
double end=5;

String path="/data/user/0/com.goonetech.v1.gofinal/cache/file_picker/sample-15s.mp3"


 static Future<string> cutAudio(String path, double start, double end) async {
 final Directory dir = await getApplicationDocumentsDirectory();
 final outPath = "${dir.path}/output.mp3";
 double start = 1;
 double end = 5;

 try 
{
 await File(outPath).delete();
 } catch (e) {
 print("Delete Error");
 }

 var cmd =
 "-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac 2 -b:a 96k -acodec libmp3lame $outPath";

 FFmpegKit.executeAsync(cmd, (session) async {
 final returnCode = await session.getReturnCode();
 print("returnCode $returnCode");
 });

 return outPath;
 }

</string>


The output is :
returnCode 1


The output path does not have the file (File not found exception)


-
Error while building ParaView on ubuntu
21 février 2014, par user3337492I´ve got school project that I have to build ParaView and work with it in parallel.
I am using this guide : http://paraview.org/Wiki/ParaView:Build_And_Install
I´ve installed all the required packages and now it is time to "Configure ParaView With CMake".
When I do this recomended code
mkdir $HOME/projects/ParaView-bin
cd $HOME/projects/ParaView-bin
ccmake $HOME/projects/ParaView3
the terminal shows this :
CMake Error : The source "/home/kulis/projects/ParaView3/CMakeLists.txt" does
not match the source "/home/kulis/projects/ParaView/CMakeLists.txt" used to
generate cache. Re-run cmake with a different source directory.so instead of ParaView3 I use ParaView in code : ccmake $HOME/projects/ParaView
then its possible to set all the variables and compile. But there comes the real problem. When i want to compile it, the terminal shows this error message :
ERROR ADD_PARAVIEW_VIEW_MODULE called without VIEW_TYPE or VIEW_XML_GROUP
CMake Error : The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files :
/home/kulis/projects/ParaView/VTK/IO/FFMPEG/FFMPEG_INCLUDE_DIR
used as include directory in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avcodec_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avformat_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avutil_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_swscale_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory /home/kulis/projects/ParaView/VTK/IO/FFMPEGAnd I do not really know what to do with it.
I would very much appreciate your help. Thanks
-
Compile ffmpeg for WinRT with libvpx ?
7 janvier 2018, par Sean O'NeilFollowing this guide :
https://trac.ffmpeg.org/wiki/CompilationGuide/WinRTCan anyone tell me if it’s possible to build and include libvpx into this ?