
Recherche avancée
Autres articles (38)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (8198)
-
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