
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (41)
-
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) (...)
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (11424)
-
How to fix "moov atom not found" when extracting an image from partial video mp4 file ?
1er septembre 2020, par EpsiloncoolI think the problem is relatively common, but I can't find any good solution to my problem.
Well, I need to create a preview of the video while it uploads. It can be a very big video, so I decided to use only the first 10 Mb of video to make image extraction with ffmpeg.


The command-line looks like this


ffmpeg -ss 00:00:00 -i "src.mp4" -frames:v 1 -q:v 2 "preview.jpg"


It works fine for lots of video files, but for mp4 it always failed with the error message "Moov atom not found". I guess the mp4 format is not streamable and the cut file looks like a broken video for the FFmpeg.


But there should be a solution to this. Could you help me ?


-
build ffmpeg with my static lib "undefined reference to" [duplicate]
7 septembre 2020, par Vassagoexec


nvcc xtest.cu -c
ar rcs libxtest.a xtest.o



get libxtest.a


dir :
/root/work/xtest.cu
/root/work/include/xtest.h
/root/work/lib/libxtest.a


Then I copy
root/work/include/xtest.h
root/work/lib/libxtest.a
to/root/work/FFmpeg/libavfiler
direction
And add my fuc :int test()
(which is in xtest.cu) to myfilter.c

next


./configure \
 --prefix="$HOME/ffmpeg_build" \
 --pkg-config-flags="--static" \
 --extra-cflags="-I/root/work/include" \
 --extra-ldflags="-L/root/work/lib" \
 --extra-libs="-lpthread -lm" \
 --bindir="$HOME/bin" \
 --enable-gpl \
 --enable-gnutls \
 --disable-libaom \
 --enable-libass \
 --disable-libfdk-aac \
 --disable-libfreetype \
 --disable-libmp3lame \
 --disable-libopus \
 --disable-libvorbis \
 --disable-libvpx \
 --enable-nonfree

make



error :


AR libavfilter/libavfilter.a
LD ffmpeg_g
libavfilter/libxtest.a(vf_colorcalc.o): In function `colorcale_filter_frame':
/root/work/FFmpeg/libavfilter/vf_colorcalc.c:166: undefined reference to `test'
collect2: error: ld returned 1 exit status
Makefile:114: recipe for target 'ffmpeg_g' failed
make: *** [ffmpeg_g] Error 1




please teach me how to build static lib to FFmpeg


-
I got a message "using Plots" in Julia and I do no how to resolve it
7 septembre 2020, par EhsanI am a new in Julia and after adding the Plots package I tried to use Plots and I got this Error message :


julia> using Plots
[ Info: Precompiling Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80]
ERROR: LoadError: InitError: could not load library "C:\Users\niri.julia\artifacts\7350a6401f1c0d38cc3518193083bc4f83adfe99\bin\avcodec-58.dll"
The specified module could not be found.
Stacktrace:

ERROR: LoadError: Failed to precompile FFMPEG [c87230d0-a227-11e9-1b43-d7ebe4e7570a] to C:\Users\niri.julia\compiled\v1.5\FFMPEG\TGvga_Ik59J.ji.

ERROR: Failed to precompile Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80] to 



can someone help me to resolve the problem