Recherche avancée

Médias (91)

Autres articles (107)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (12477)

  • aacdec : Lower the number of frames required to detect ADTS

    11 mars 2014, par Martin Storsjö
    aacdec : Lower the number of frames required to detect ADTS
    

    For live audio streams, requiring 500 frames for a stream to
    be detected is a bit overkill.

    This allows live ADTS streams that don’t start nicely at
    a frame boundary to start up more quickly, e.g.
    http://mp3.streampower.be/radio1.aac.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/aacdec.c
  • Rotated video with ffmpeg doesn't play in flowplayer in IE9

    3 avril 2018, par yoshi

    I have a script that rotates videos 90 degrees and then the videos are displayed on a web page using flowplayer (HTML5 version, not Flash). After the video is rotated once it does not play in IE9 but plays without any other problems in Chrome and Firefox.
    The error message is : Video file not found.

    I’ve looked in IE9’s developer tools console, in the network tab and the browser streams the whole video.

    The following is the ffmpeg command I use to rotate and convert the video :

    ffmpeg -i input.mov -y -r 30 -b 4M -vf 'transpose=1,scale=800:trunc(ow/a/2)*2' -ar 48000 -vcodec libx264 -profile baseline -preset slow -level 2.2 output.mp4

    This is the input file which I used : https://dl.dropboxusercontent.com/u/37994/local%20capture.mov

    This is the output video : https://dl.dropboxusercontent.com/u/37994/local%20capture%20rotated.mp4

    The input video from above is a screen capture made using QuickTime on Mac OS.

    This also happened for this video : http://mirrorblender.top-ix.org/peach/bigbuckbunny_movies/big_buck_bunny_480p_h264.mov
    And also this one : https://dl.dropboxusercontent.com/u/37994/clipcanvas_14348_offline.mp4

    This didn’t happen for the sample .mov from here : http://support.apple.com/kb/ht1425

    If I run the command twice, meaning I rotate the video 90 degrees and then I rotate the output using the same command once more, the problem disappears, but I need to be able to rotate only 90 degrees.

    This problem doesn’t happen if I put IE9 in IE7 or IE8 compatibility mode.

    I was thinking that maybe the problem was how the server serves the video but there’s no problem with other videos.

    I looked at the metadata with ffmpeg but didn’t see anything significant.

    I already have AddType video/mp4 .mp4 in .htaccess.

    I can’t seem to pin down what’s causing this problem.

    Edit :

    Request in IE9
    IE9 request

    Response in IE9
    IE9 response

  • Camera video capture to file in Xamarin using OpenCV and FFmpeg

    9 novembre 2017, par Bz Burr

    I’m currently building an Android App in Xamarin. Part of the app has a camera page that will be used to capture Videos.
    I currently use OpenCV to overlay some text on the video (time / date and other interesting stuff). This correctly displays on the screen.

    What I need to be able to do is to allow to users capture video and to make sure this data remains on the video.
    I can’t figure out how to use FFMPeg to make this happen. Should I be using the mediaRecorder somehow as, I’m guessing, OpenCV’s ?

    public Mat OnCameraFrame(Mat p0)

    Is the first stop for the frame along any sort of video capture process.
    I don’t want to just capture the phone’s screen as there are various buttons, etc that don’t belong in a video and of course I do want to capture the audio with the video.

    Can someone point me in the right direction ?