Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (73)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (9110)

  • Anomalie #3851 : Référencer code.plugins.spip.net

    1er novembre 2016, par jluc -

    Bonne idée

    mais pour les pages de plugins.spip.net il y a plus simple que parser le .txt ou changer la DTD : tester si l’url de phpdoc existe : juste tester si http://code.plugins.spip.net/albums existe et ne renvoie pas une 404, et alors mettre le lien PHPDOC vers cettre url

  • Start Android Java VM from native C code NDK (ffmpeg mediacodec use)

    19 avril 2021, par eusoubrasileiro

    I managed to cross-compile ffmpeg using the NDK for armv8a api 27 with MediaCodec hardware acceleration support.

    


    Using root after setting permissions, folders and setting properly LD_LIBRARY_PATH etc. I can run it without problems on a terminal session (ssh). Only if I don't try to use the -hwaccel option.

    


    If try to run something using -hwaccel, like :

    


    ffmpeg -rtsp_transport tcp -an -hwaccel mediacodec -c:v hevc_mediacodec -i rtsp://user:pass@192.168.0.100:554/onvif1 -f null - -benchmark


    


    I get the error bellow about No Java virtual machine.

    


    ...
Input #0, rtsp, from 'rtsp://user:pass@192.168.0.100:554/onvif1':
  Metadata:
    title           : H.265 Video, RtspServer_0.0.0.2
  Duration: N/A, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: hevc (Main), yuv420p(tv, bt470bg), 1920x1080 [SAR 1:1 DAR 16:9], 10 fps, 10 tbr, 90k tbn, 10 tbc
    Stream #0:1: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
[amediaformat @ 0x7e2ea27300] No Java virtual machine has been registered
[hevc_mediacodec @ 0x7e2eb44f00] Failed to create media format
Stream mapping:
  Stream #0:0 -> #0:0 (hevc (hevc_mediacodec) -> wrapped_avframe (native))
Error while opening decoder for input stream #0:0 : Generic error in an external library


    


    Would it be possible to start (create or launch ?) the Dalvik Java VM directly from the C code ? I don't even know if those are correct terms. Make it visible for ffmpeg ?

    


    Any information that will help a Android Newbie get on his feet will be greatly appreciated. If that is possible I would write a little patch on the ffmpeg code.

    


    I really would not like to package this in an app only to be able to test around with this.

    


  • FFmpeg command works in terminal but gives an error in php code

    21 mai 2021, par Rider

    Use this command :

    


    ffmpeg -i lecture.mp4 -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls filename.m3u8


    


    It works.

    


    $path = '1/';
  $inputFile = 'lecture.mp4';
  $filePath = 'filename.m3u8';
  $commandOutput = exec ('/opt/ffmpeg/ffmpeg -I '.$path .$inputFile. ' -Codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls'.$path .$filePath);


    


    Using this PHP code I get the error : At least one output file must be specified

    


    What is causing this error ?