
Recherche avancée
Autres articles (61)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (10098)
-
Convert HEVC/H.265 video to a more widely supported format using fluent-ffmpeg in Node.js
21 juin 2021, par Daniel LoitertonMy app allows users to upload videos from their phones. However, the latest iPhone default format (HEVC / H.265) does not seem to be supported by Chrome and other browsers, so some users cannot stream the videos.


I'm already using fluent-ffmpeg on my Node.js backend to read metadata and extract thumbnails from the uploaded videos. How would I go about converting HEVC videos to something else ? What format/options would be appropriate for streaming to browsers ? Ideally I'd like to keep files fairly small, and I'm willing to sacrifice some quality to that end.


-
When i build ffmpeg with ubuntu this warning occurs "Function is deprecated [-Wdeprecated-declarations]"
31 mars 2020, par Pradeep SimbaI download the latest version of ffmpeg.
when I build with my ndk toolchain it generate .so and include folder.
But , this warning occurs ;
How can I solve this ?
-
Can't build ffmpeg
7 avril 2016, par Dev_VladI have some problems with building ffmpeg for servestream radio.
Here’s the log :
build-ffmpeg:
[exec] arm-linux-androideabi-gcc is unable to create an executable file.
[exec] C compiler test failed.
[exec]
[exec] If you think configure made a mistake, make sure you are using the latest
[exec] version from Git. If the latest version fails, report the problem to the
[exec] ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
[exec] Include the log file "config.log" produced by configure as this will help
[exec] solving the problem.
[exec] Copying FFmpeg .so files from /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/submodules/ffmpeg-0.11.1-android-2012-09-18/build/ffmpeg to /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/jni/ffmpeg/ffmpeg/armeabi
[exec] Copying FFmpeg .so files from /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/submodules/ffmpeg-0.11.1-android-2012-09-18/build/ffmpeg to /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/jni/ffmpeg/ffmpeg/armeabi-v7a
[exec] Native build complete, exiting...
[exec] cp: не could not execute stat for «/home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/submodules/ffmpeg-0.11.1-android-2012-09-18/build/ffmpeg/armeabi-v7a»: No such file or catalog
native-clean:
[exec] Android NDK: WARNING: APP_PLATFORM android-17 is larger than android:minSdkVersion 8 in ./AndroidManifest.xml
[exec] Android NDK: ERROR:jni/ffmpeg/Android.mk:avcodec: LOCAL_SRC_FILES points to a missing file
[exec] Android NDK: Check that jni/ffmpeg/ffmpeg/armeabi/lib/libavcodec.so exists or that its path is correct
[exec] /home/vlad/android/ndk/build/core/prebuilt-library.mk:45: *** Android NDK: Aborting . Stop.In
arm-build.sh
file I edited some lines :export NDK=${HOME}/android-ndk
to
export NDK=/home/vlad/android/ndk
next :
TOOLCHAIN=`echo $NDK/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86*`
to
TOOLCHAIN=`echo $NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86*`
What’s wrong ?