Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (55)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (9261)

  • Live TV Stream to Android

    8 mai 2016, par Hd Dream

    I am new user on stackoverflow.
    I wrote you today to get answer and solution to my problem.
    I have input stream come from vlc. I need that all android connected to my network can watch stream in live in the same time like an online channel tv.
    I saw for this channel

    Code : Select all
    www.canal2international.net/live.php

    there is a same ts file is generated for each 45 second.

    I need to do the same but with a mp4 file that I insered on html5 video tag.
    for that I tried to convert my input stream with this cmd on ffmpeg

    Code : Select all
    ffmpeg -i 192.168.1.10:8620 -c:v libx264 -profile:v baseline -c:a aac -ar 44100 -ac 2 -b:a 128k -f segment -segment_time 45 -segment_format_options movflags=+faststart -segment_list D :\live\play.m3u8 -segment_list_size 2 D :\live\watch%03d.mp4

    I’m not satisfied. I can’t insert m3u8 file in html5 video tag because android don’t read it and his content.

    I tried another code that I can say little similar that the result of this page

    Code : Select all
    www.canal2international.net/live.php

    Code : Select all
    ffmpeg -i 192.168.1.10:8620 -hls_flags single_file D :\live\play.m3u8

    It generated two files, a ts and a m3u8.
    I know that html5 video tag can read ts file. Maybe there is a solution somewhere.

    The second way I don’t like in this code is ts file don’t read in real time. When I read file it begin from the first encoding.

    All android connected to my network must watch in real time !

    I don’t know how to solve my problem that’s why I write in thie forum.

    Thank you in advance for all your help !

  • How to create a JavaScript code to convert a YouTube video to mp3 on a website ?

    2 octobre 2019, par Uyen_77

    How does one take a YouTube link and convert it to mp3 ? I’ve seen this done on a few sites like : https://y2mate.com/ and https://ytmp3.cc/

    How is code like this written ? I want to do this in JavaScript but not sure how to implement. The way I am trying to make the site is by writing the code like :

    1. Load with curl : https://youtube.com/Watch
    2. Parse json & extract url
    3. Download video to server
    4. Use ffmpeg to convert
    5. Send url to user
    6. Allow them to download the extracted audio

    Can someone show what the code for this would look like.

    If anyone knows of a better way to do this for a website please explain.

    Thank you

  • How to assign variable to different extension of files in same directory in bash

    3 mai 2021, par Yacer Azeem

    I have a task to :

    


      

    1. Watch a folder for video files (mp4,mov,mkv etc.)
    2. 


    3. Transform the video files to HLS (480p, 720p, 1080p) using ffmpeg
    4. 


    5. Move these files to a different folder
    6. 


    7. Delete the original files from the watch folder
    8. 


    9. Send an email stating that the following video file was transcoded
    10. 


    


    I want to deal with every .mp4 .mov and .mkv as a variable in bash so that I can perform the above-mentioned tasks.
The folder containing these files are in

    


    /mnt/volume1/videos


    


    directory architecture

    


    /mnt/volum1/videos/sample.mp4
/mnt/volum1/videos/sample.mov
/mnt/volum1/videos/sample.mkv