Recherche avancée

Médias (91)

Autres articles (67)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

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

Sur d’autres sites (6142)

  • Recover hevc encoded '.ts' files without SDP file or NAL block ?

    3 décembre 2023, par Anoduck

    In the process of trying to recover deleted video transport stream files from a storage device. The files are "hevc" encoded and when played output many errors of hevc: Could not find ref with POC 0 and when I attempt to repair them the output is PPS id out of range: 0 . There are no other file types on the storage device, especially no SDP file for which to extract the NAL block from. So, I am stumped as to how to go about acquiring the needed information to the frames to properly decode the files.

    


    ref : errors when decode H.264 frames using ffmpeg

    


    As mentioned previously, I did try to run ffmpeg -i corrupted_input.ts -map 0 -copy_unknown -c copy fixed.ts, and this is what generated the PPS id out of range: 0 error.

    


    If one of the recovered 'ts' files does contain the required SPS and PPS keyframe, it will be difficult pairing this file with any other file that might belong to it, since all files were recovered, renamed, and dumped into one large folder together. As per the default behavior with the recovery utility photorec.

    


  • I want to embed text and stickers to video

    30 décembre 2014, par Nepster

    Is there any easy approach to embed text and sticker to video.
    I don't want to use overlay

    I want to embed(add it to video permanently). Can i do this without using FFmpeg (NDK library). Is there any way using MediaMetadataRetriever.

  • Using ffmpeg to add text/ticker to live video [migrated]

    8 juin 2013, par user763410

    I am able to add text to a video on my hard disk, before I braodcast it...by
    using the command.

    ffmpeg -y -i IMG_0696.MOV -acodec libmp3lame -vcodec msmpeg4 \
    -b:a 192k -b:v 1000k -ar 44100 \
    -vf "drawtext=text=string1 string2 string3 string4 string5 string6 string7 :expansion=normal:fontfile=/Windows/Fonts/cambriai.ttf: y=0:x=h-(2*lh)-n: fontcolor=white: fontsize=40: box=1: boxcolor=0x00000000@1" \
    -an IMG_0696.avi

    Now, I want to add different texts at various time instances. It should be read
    from a file which has the formatthe format :
    For example

    00:00:10 : google
    00:00:20 : yahoo
    00:00:30 : msft
    .
    .
    .
    00:00:60 : amzn
    .
    .
    .
    00:05:30 : java
    

    Is there a way to make ffmpeg read the file and add text at specified times ?
    Eventually, I would like to add live ticker symbol to a video before
    broadcasting it.