
Recherche avancée
Autres articles (27)
-
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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 -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (4311)
-
splitting a precise .ts piece with ffmpeg when doing -c:v copy
13 février 2016, par IvoThe goal is to generate HLS-compatible MPEGTS pieces from a mkv, copying the video with
-c:v copy
, but transcoding the audio.However, since on input seeking (
-ss
) ffmpeg seeks to keyframe (for me, that seems to be nearest previous keyframe), I’m getting N seconds of video without audio before most of the segments, starting from the keyframe.Possible solutions are :
-
Define segment offset/duration so that it actually matches the keyframes ; problem is I don’t know how to quickly extract the list of keyframes and their offsets
-
Force ffmpeg to seek to the proper time somehow, and generate a keyframe there to start the segment with ; EDIT : I assume this is impossible since generating a keyframe changes all frames after that, which is impossible with
-c:v copy
Please do not suggest existing HLS solutions unless they demonstrate in source code a solution to the problem. ffmpeg has to be used, to generate each segment on-demand.
-
-
Assigning variable a home file path returns warning
28 mai 2015, par Code_Ed_StudentI am working with
ffmpeg
and bash. The question that follows is more in relation to bash scripting variable assignment. I compiledffmpeg
from source using the guide. There are two ways to invokeffmpeg
:cd ~/bin && ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
or/home/yourusername/bin/ffmpeg ...
. However in my script I am trying to set path to a variable and it returns the errorUsing a password on the command line interface can be insecure
. How can I properly call the program without this warning ?#!/bin/bash/
ffprobe_path="/home/yourusername/bin/ffprobe"
while IFS== read field value; do
details[$field]="$value"
done < <($ffprobe_path -i "$file" -show_format -v quiet | grep '.=.')
echo "${details[duration]}"Result
Warning: Using a password on the command line interface can be insecure.
-
Firefox, Chrome, Safari have grey background for MP4 HTML5 video
5 avril 2016, par JamesAny video (that I can make) with a white background becomes grey in Firefox, Chrome, and Safari (it is white in IE). Well, on my Windows machine it is grey, on my Android phone/tablet and Mac it is white...
I am using ffmpeg to encode the video. If I encode it as webm, the background is white.
See : https://jsfiddle.net/Lbg8f6ck/
I found a hack that fixes it for Chrome :
<video style="-webkit-filter:brightness(108.5%);"></video>code>
But it does not work for Firefox or Safari.
Another hack for Firefox :
filter:brightness(1.085)
But for some reason setting it through JavaScript does not work.
A few versions ago the background was white for Chrome, then became grey again...
The question is : Why is white grey ?
Is it an issue with the video or with Chrome, Firefox, Safari in general ? (How can they not support white ?)
Is it possible to get a white background ?
Any hacks, workarounds ?