
Recherche avancée
Médias (3)
-
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
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (96)
-
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 -
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (8691)
-
python : video-splitter- [WinError 2] The system cannot find the file specified
20 novembre 2018, par BruceI am trying to run this script called.
video-splitter. However, when I try to run the script, I get the following error :Exception occured running main():
[WinError 2] The system cannot find the file specifiedThis is the command I ran :
python ffmpeg-split.py -f big_video_file.mp4 -s 10
From the documentation
This splits big_video_file.mp4 into chunks, and the size of chunk is 10 seconds. Each chunk will be suffixed with numeric index, for example big_video_file-0.mp4, big_video_file-1.mp4, etc.
-
FFmpeg - trim audio error, Could not find codec parameters ?
27 novembre 2018, par wensefuI’m tring trim a audio file using ffmpeg,
input info :
input.mp3
duration=264000, artist=xxx, album=yyy, audio_codec=mp3, filesize=4234952, title=aaa, chapter_count=0command :
ffmpeg -i input.mp3 -ss 71.000 -t 91.900 -max_muxing_queue_size 1024 -acodec copy output.mp3
and then I got error below :
[mp3 @ 0xd170ca00] Could not find codec parameters for stream 0 (Audio: mp3, 44100 Hz, 2 channels, 128 kb/s): unspecified frame size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Guessed Channel Layout for Input Stream #0.0 : stereo**Can someone help me ? Many thanks.
-
Command find and convert using ffmpeg
16 avril 2023, par molwikoI would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name.
The two command line :



find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3