Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (67)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Convert MP4 File to M3U8(only m3u8 file No ts file) [closed]

    28 février 2024, par Ayan Ansari

    I'm a beginner working on a content streaming app (like Netflix) where i want to add feature of quality control of the content (like switch to 480p, 720p, 1080p etc). I'm using Exoplayer for video player and the app is almost ready. But the problem i've been facing is that all the files are either mp4, mkv etc file but i need m3u8 file. So I tried converting video using FFmpeg tools which worked but it gives me LOTS OF TS file which i need to upload along with the m3u8 file. After doing some more research i was able to reduce it to 1 m3u8 and 1 TS file. Is it possible to Create only 1 m3u8 file no TS file ? Here are what i've tried.

    


    ffmpeg -i input.mp4 -c:a aac -strict -2 -c:v libx264 -preset ultrafast -crf 28 -maxrate 2M -bufsize 4M
-hls_time 6 -hls_playlist_type vod -hls_flags single_file -f hls output.m3u8


    


    I also thought i will upload all the video in different quality manually, but as a broke 17 Y/O teenager, noobie who don't know how to use AWS or cloud Servers and also AWS or Google Cloud doesn't accept Indian Debit Card(Rupay) for free trial.
Please also suggest some where i can store these data for free i guess( i don't care about where i upload, i just need the link which i can put in my database.)
Thank You :)

    


  • Batch File Removing File Extension

    29 décembre 2013, par scsa20

    So I've made a batch file to help me extract the video only from an MKV file using MKVToolNix and then re-encode the h264 file to an MP4 for video editing using mp4box. It works really well, this is how it looks :

    for %%a in (*.mkv) do "C:\Program Files (x86)\MKVToolNix\mkvextract.exe" --ui-language en tracks "%%a" 0:"%Sources%\h264\%%a.h264"

    for %%a in (*.h264) do mp4box.exe -add "%%a:fps=23.976" "%Sources%\%%a.mp4"

    Problem is, the first line would extract the file with .mkv.h264 then when I go to encode the file with mp4box to a MP4 file it comes out as .mkv.h264.mp4.

    Is there a way to code it so it'll drop the first 2 extensions and leave only with the .MP4 ? Searched around and can't find my answer for something that is after the fact (all the ones I've found is for removing the last extension which doesn't help me).

    Thank you for any help.

  • FFMPEG what is the funcition combine WAV file and Video File ?

    4 janvier 2012, par ALexF

    i use Qt & opencv record video, QAudioInput for record audio —> wav file, i want combine they into 1 video file, every body talk me should use FFMPEG for combine they, i research very much but i cant found Funcition or class implement it, please help me

    thanks very muchs

    i write it on windows & macos