Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (84)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk 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.

  • 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 (9250)

  • FFMPEG : Transcode UHD H265 to SDR H264 without color loss

    29 juin 2021, par Abhinandan Chakraborty

    I'm testing FFMPEG on my server. I'm trying to transcode H265 10-bit to H264 8-bit to support playing the video on all major web browser.

    


    1. This is the first command :

    


    ffmpeg -i 4K.ts -c:a aac -c:v h264 -crf 19 -preset ultrafast out.mp4


    


    Result : Video only playable on VLC media player. Doesn't play on any browser

    


    2. Then I tried using this command :

    


    ffmpeg -i 4K.ts -c:a aac -c:v h264 -crf 19 -profile:v main -preset ultrafast -vf "format=yuv420p" out.mp4


    


    Result : Video is playable everywhere but massive color loss.

    


    3. Then I tried another command :

    


    ffmpeg -i 4K.ts -c:a aac -c:v h264 -crf 19 -profile:v main -preset ultrafast -vf "format=yuvj420p" out.mp4


    


    Result : Video is playable everywhere but increased color range

    


    I don't know if I am missing anything or If I should completely disallow users to upload video with 10-bit depth. Any help will be greatly appreciated

    


    If anyone interested in the video which I am testing on then here is the link : https://drive.google.com/uc?export=download&id=1pGsnknkoIDRPKrW-YPFS7U31J09PeM4N

    


    I followed through many google results to come up with these command, Some of them are :

    


      

    1. FFMPEG Transcode H265 video from 10-bit to 8-bit
    2. 


    3. https://blender.stackexchange.com/questions/73743/lossless-10-bit-colorspace-yuvj420p-video-output
    4. 


    5. https://askubuntu.com/questions/922563/set-bit-depth-in-ffmpeg-encoding-for-hevc
    6. 


    


  • Streaming from google cloud run to youtube

    29 mars 2021, par Robin to Roxel

    When I stream to YouTube with ffmpeg from within a container on google cloud run, I get a connection timeout. But the same container successfully streams from google cloud build to YouTube during the container build process (which I accidentally found out). Also, the same container successfully streams to YouTube when I run it locally.

    


    The ffmpeg command is ffmpeg -hide_banner -loglevel error -re -i test.flv -c copy -f flv rtmp://a.rtmp.youtube.com/live2/key. The dockerfile is

    


    FROM python:3.8-slim-buster

RUN apt update; apt install ffmpeg -y
RUN apt-get update; apt-get install git -y

RUN git clone "url/to/github/repository"
RUN pip install flask

EXPOSE 8080

CMD cd test_dir; python3 test_script.py


    


  • Google Speech to Text on WAV file gives

    7 janvier 2021, par Darth.Vader

    I am using the Google Speech to Text API to convert a WAV file to text. When I play the WAV file, it works fine but when I run the Google Speech To Text API I get this error :

    


    WAV header indicates an unsupported format.


    


    When I try to analyze the file using ffmpeg tool, it get the following error :

    


    Output #0, wav, to '/home/shubham/workspace/intent-service/scripts/audio2.tmp.wav':
Metadata:
  ISFT            : Lavf57.83.100
  Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 8000 Hz, mono, s16, 128 kb/s
  Metadata:
    encoder         : Lavc57.107.100 pcm_s16le
[gsm_ms @ 0x55d4c255cd20] Packet is too small
Error while decoding stream #0:0: Invalid data found when processing input size=7924kB time=00:08:27.16 bitrate= 128.0kbits/s speed=3.72e+03x    
video:0kB audio:7924kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.000961%


    


    What am I missing ?