Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (83)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (8395)

  • FFmpeg drawtext - Could not load fontface from file [closed]

    9 avril 2013, par falek.marcin

    I've try to add simple text on top of video with FFmpeg using drawtext parameter. Every time i'm going to do this, error is returned :

    Could not load fontface from file 'arial.ttf' : cannot open resource

    To indicate the location of the font I used the following methods :

    ffmpeg -i C:\Test\rec\vid_1321909320.avi -vf drawtext=fontfile=arial.ttf:text=test -sameq vid_1321909320.flv
    ffmpeg -i C:\Test\rec\vid_1321909320.avi -vf drawtext=fontfile=C:\Windows\Fonts\arial.ttf:text=test -sameq vid_1321909320.flv

    All have failed. Does anyone have experience with adding text using ffmpeg ?

    FFMPEG version: N-34549-g13b7781 build on Nov 6 2011
  • Android RTSP streaming buffer size for delayed playback

    19 novembre 2012, par frijj2k

    I can access and view RTSP streams from IP cameras on Android via the VideoView component without problems.

    Now I need to play the RTSP stream with a delay (i.e. if I specify a 30 second delay, the playback on screen should be 30 seconds behind the source and the delay needs to be variable though not during playback, only at the point of connecting to the source).

    I originally thought this would not be a problem as I could simply change the RTSP buffer duration before connecting to the camera but unfortunately it seems the buffer size is baked into the firmware and cannot be changed in software. Now I have got a horrible feeling that my way forward will be to compile a version of FFMpeg for Android and somehow get the stream data out from the library, buffer it and then render it myself and I have no experience with FFMpeg.

    I am unsure how I would now go about solving this problem and any help or pointers in the right direction would be greatly appreciated.

    Update :

    Sorry I forgot to mention, the RTSP stream is being accessed over WiFi on a LAN so no huge latency issues here from going over the Internet.

  • compress MP4 file using FFMPEG and PHP

    8 juillet 2017, par user2692997

    hello i am new to ffmpeg and am having trouble implementing it on my server i have managed to install it and found some code to confirm its working however i am trying to set the frame width and height but i am having no luck

    what i need help with
    - change frame width n height to something like 400 by 800
    - any other changes you can recommend from experience for compressing mp4 for download
    - save and overwrite existing file

    this is the code i found to test ffmpeg

    extension_loaded('ffmpeg') or die('Error in loading ffmpeg');
    $vid = realpath('rc.mp4');
    $ffmpegInstance = new ffmpeg_movie($vid);
    echo "getDuration: " . $ffmpegInstance->getDuration() . "<br />".
    "getFrameHeight: " . $ffmpegInstance->getFrameHeight() . "<br />".
    "getFrameWidth: " . $ffmpegInstance->getFrameWidth() . "<br />".
    "hasAudio: " . $ffmpegInstance->hasAudio();

    enter image description here