Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (28)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (3627)

  • video compression using ffmpeg not working save as empty file after conversion

    25 mars 2019, par HEMANTH KUMAR

    I’m using CodeIgniter and also installed FFmpeg

    I have converted the big size video to small size and it worked in localhost.

    On the live server it’s converting but saving has an empty file.

    $v = '/var/www/html/login/public/restaurants/171/items/'.$rowv->item_id.'/'.$rowv->image;              
    $info = pathinfo($rowv->image);
    $v2 ='/var/www/html/login/public/restaurants/171/items/'.$rowv->item_id.'/'.'demo'. '.' . $ext;


    $a = exec("ffmpeg -y -loglevel error -i ".$v." -vcodec libx264 -crf 28 -preset faster -tune film ".$v2);
  • RTSP authentification through ffmpeg/ffplay doesn't work because of special symbols in the password

    26 octobre 2018, par Eugene Mart

    I have run into a problem while trying to receive a video from an IP-camera using ffplay.

    My rtsp request looks like this : rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp

    And ffplay/ffmpeg returns an 401 Unauthorized error code. I am absolutely sure that the credentials are correct. The problem is caused by the password (M3%LOL$KEKfp), which consists of special symbols like %, and #. Is there any way to make it work without changing the password ?

    I tried using quote marks like this ffplay "rtsp ://login:M3%LOL$KEKfp@x.x.x.x/path/to/media.amp", and it didn’t have any ideas ?

    PS : I’m using windows. Tried both CMD and PowerShell

  • avcodec/sanm : better frame size detection for old codecs

    11 mars, par Manuel Lauss
    avcodec/sanm : better frame size detection for old codecs
    

    The size of the video frame (FOBJ) of the old codecs (ANIMv0/1/2) can
    very reliably be determined :
    - ANIMv0/1 (=Rebel Assault 1) uses a 384x242 internal buffer for
    everything. The codec parameters only describe the size and offset
    of the specific FOBJ on that buffer.
    - ANIMv2 titles usually use one of the fullscreen codecs (37/47/48)
    as first FOBJ, and their dimensions can generally be trusted.
    - RA2 uses 424x260 as internal buffer, use that if encountered :
    08PLAY.SAN does not use codec37 so we need to guess using the
    codec coordinates.
    - ignore sizes smaller than 2x2 or larger than 800x600.
    - some game videos have an initial fobj with either 1x1 or -1x-1
    pixels in size, ignore them with a warning (Full Throttle
    and the Rebel Assault 2 xxRETRY.SAN videos).

    Once a known/valid dimension set has been discovered, use it and
    don't change it for subsequent FOBJs, rather clamp the large frame
    to the determined dimensions.

    Tested with RA1, RA2, Full Throttle, Dig, Outlaws, SotE and MotS
    videos.

    Signed-off-by : Manuel Lauss <manuel.lauss@gmail.com>

    • [DH] libavcodec/sanm.c