
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (4)
-
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 (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...) -
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 (2860)
-
how encode xdcam.mxf and set for mediainfo flag "standard : component"
3 août 2018, par livioMy goal is to encode an XdcamHD 50Mb .mxf, with ffmpeg or ffmbc or bmx, and get the following Mediainfo technical and tag data
Format Settings, Matrix : Custom
Standard : Component
When I try to convert with FFmbc I get a correct XdcamHD in every aspects, except the following Mediainfo technical data :
Format Settings, Matrix : Default
Standard : PAL
The target file and my file analized whith ffprobe are identical
on the left target file on the right my encoded file
and this is my code
ffmbc.exe -i %1 -tff -target xdcamhd422 -t 5 -y rewrapffmbc.mxf
When i try to convert with ffmpeg I obtain the same good file but if I read the technical and tag data in Mediainfo the flag "Standard :" has disappeared. Also in this case my file is being rejected from a Broadcast Company we deal with.
here is the ffmpeg code
ffmpeg.exe -i %1 -r 25 -aspect 16:9 -pix_fmt yuv422p -color_primaries 1 -color_trc 1 -colorspace 1 -vcodec mpeg2video -non_linear_quant 1 -flags +ildct+ilme -top 1 -intra_vlc 1 -qmax 3 -lmin "1*QP2LAMBDA" -vtag xd5c -rc_max_vbv_use 1 -rc_min_vbv_use 1 -g 12 -b:v 50000k -minrate 50000k -maxrate 50000k -bufsize 3835k -bf 2 -trellis 1 -map 0:0 -map 0:1 -map 0:2 -map 0:1 -map 0:2 -map 0:1 -map 0:2 -map 0:1 -map 0:2 -map_channel 0.1.0:0.1.0 -map_channel 0.2.0:0.2.0 -map_channel 0.1.0:0.3.0 -map_channel 0.2.0:0.4.0 -map_channel 0.1.0:0.5.0 -map_channel 0.2.0:0.6.0 -map_channel 0.1.0:0.7.0 -map_channel 0.2.0:0.8.0 -c:a pcm_s24le -ar 48000 -ac 1 -map_metadata 0 -timecode 09:59:59:20 -y profilo-1.mxf
Can someone provide a solution or a workaround ?
Thank you
-
ffmpeg in "streaming mode" suddenly stops writing output file and resumes after several minutes
29 juin 2018, par EliAI’m using ffmpeg to convert chunks of media in webm format to a wav file in a "continuous stream" mode.
Using a python wrapper, I’m feeding ffmpeg a webm chunk (let’s say 1 chunk each second) and ffmpeg continuously writes the output wav (then, in a separate thread I’m reading this wav file and pass the new data forward).
This works well most of the time, but some times, I get this weird behavior :
- after some chunks are processed and output to the wav file, ffmpeg stops writing to the output file (the file stops growing but ffmpeg keeps getting the webm chunks)
- this can go on like this for several minutes, and then ffmpeg resumes writing to the wav file
- eventually, the complete wav file is written successfully, but this causes huge delays in the streaming process.
Looking at CPU and memory usage, this doesn’t seem to be the issue.
Any ideas as to what could cause ffmpeg to stop streaming for several minutes and then resume ?
This can happen after 30 seconds, after 3 minutes or after an hour of streaming media chunks and the time it takes ffmpeg to resume also varies.In my python code, I’m basically opening a
subprocess.Popen()
process and write to the process’stdin
to feed ffmpeg the media chunks.So my code looks something like :
ffmpeg_proc = subprocess.Popen('ffmpeg -y -f webm -i - -ac 1 -ar 16000 -f wav /tmp/out.wav', shell=True, stdin=subprocess.PIPE)
for chunk in chunks:
ffmpeg_proc.stdin.write(chunk)I’m using
python 3.6
andffmpeg version 2.8.14-0ubuntu0.16.04.1
Thanks in advance !
-
Unable to find a suitable output format for "-i ... "
29 juin 2018, par Pan NgI am using writemind’s ffmpeg module (running ffmpeg v3.0.2)
http://writingminds.github.io/ffmpeg-android-java/But I am getting the follow error when executing the command
[NULL @ 0xe93aa000] Unable to find a suitable output format for ’ -i
"/storage/emulated/0/Android/data/com.charaku.popsical.tv/cache/video_recording.mp4"
-i "/storage/emulated/0/Download/132859_aac-group-2.mp4" -c:v copy -filter_complex ’[1:a] adelay=2500|2500 [delayed] ; [0:a] [delayed] amix [out]’ -map 0:v -map ’[out]’
"/storage/emulated/0/Android/data/com.charaku.popsical.tv/cache/mixed_test2.mp4"’
-i "/storage/emulated/0/Android/data/com.charaku.popsical.tv/cache/video_recording.mp4"
-i "/storage/emulated/0/Download/132859_aac-group-2.mp4" -c:v copy -filter_complex ’[1:a] adelay=2500|2500 [delayed] ; [0:a] [delayed] amix [out]’ -map 0:v -map ’[out]’
"/storage/emulated/0/Android/data/com.charaku.popsical.tv/cache/mixed_test2.mp4" :
Invalid argumentThe command is supposed to mix the audio of a video file with the audio of another audio file to produce a new video file.